Initial project commit
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import { get, post } from "@/utils/request";
|
||||
|
||||
export const submitCorrection = (spotId, data) =>
|
||||
post(`/spots/${spotId}/corrections`, data);
|
||||
|
||||
export const getCorrections = (spotId, params) =>
|
||||
get(`/spots/${spotId}/corrections`, params);
|
||||
Reference in New Issue
Block a user