f9e8bb8e10
Co-authored-by: Pranav Raj Sreepuram <pranavrajs@gmail.com>
9 lines
298 B
JavaScript
9 lines
298 B
JavaScript
import { API } from 'widget/helpers/axios';
|
|
import { buildSearchParamsWithLocale } from '../helpers/urlParamsHelper';
|
|
|
|
export default {
|
|
create(name) {
|
|
const search = buildSearchParamsWithLocale(window.location.search);
|
|
return API.post(`/api/v1/widget/events${search}`, { name });
|
|
},
|
|
};
|