diff options
Diffstat (limited to 'src/lib/review/api')
| -rw-r--r-- | src/lib/review/api/customerReviewsApi.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/lib/review/api/customerReviewsApi.js b/src/lib/review/api/customerReviewsApi.js new file mode 100644 index 00000000..1058b72e --- /dev/null +++ b/src/lib/review/api/customerReviewsApi.js @@ -0,0 +1,6 @@ +import odooApi from "@/core/api/odooApi" + +export const getCustomerReviews = async () => { + const response = await odooApi('GET', '/api/v1/customer_review') + return response +}
\ No newline at end of file |
