diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-11 16:52:33 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-11 16:52:33 +0700 |
| commit | c520c39918694e793da661c30975d6c4b60eb63c (patch) | |
| tree | 50256725bb6e13d2b7d497ad259387f0519d5a5d /src/lib/review/api | |
| parent | b027c12d678698a9b8adcf4508a6160321c8172a (diff) | |
fix rfq title and customer review
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 |
