2020-03-01 12:17:08 +00:00
|
|
|
/* global axios */
|
|
|
|
import ApiClient from './ApiClient';
|
|
|
|
|
|
|
|
class UserNotificationSettings extends ApiClient {
|
|
|
|
constructor() {
|
2020-03-09 17:57:10 +00:00
|
|
|
super('notification_settings', { accountScoped: true });
|
2020-03-01 12:17:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
update(params) {
|
|
|
|
return axios.patch(`${this.url}`, params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default new UserNotificationSettings();
|