Files
chatwoot/app/javascript/dashboard/api/testimonials.js
Nithin David Thomas 09ce85b30d Chore: moves localstorage helper as a shared utility (#6838)
* Chore: moves localstorage helper as a shared utility and refactors constants

* Refactors constants file

* Fixes merge conflicts

* Delete constants.js

---------

Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com>
2023-04-11 15:50:46 +05:30

7 lines
176 B
JavaScript

/* global axios */
import wootConstants from 'dashboard/constants/globals';
export const getTestimonialContent = () => {
return axios.get(wootConstants.TESTIMONIAL_URL);
};