mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-03 12:37:56 +00:00
14 lines
236 B
JavaScript
14 lines
236 B
JavaScript
const updateSurvey = ({ uuid, data }) => ({
|
|
url: `/public/api/v1/csat_survey/${uuid}`,
|
|
data,
|
|
});
|
|
|
|
const getSurvey = ({ uuid }) => ({
|
|
url: `/public/api/v1/csat_survey/${uuid}`,
|
|
});
|
|
|
|
export default {
|
|
getSurvey,
|
|
updateSurvey,
|
|
};
|