mirror of
https://github.com/pierre42100/ComunicWeb
synced 2025-06-19 12:25:16 +00:00
Send a request to update notifications settings
This commit is contained in:
@ -213,6 +213,24 @@ const SettingsInterface = {
|
||||
}
|
||||
|
||||
await api("settings/set_data_conservation_policy", data, true)
|
||||
},
|
||||
|
||||
/**
|
||||
* Get notifications settings
|
||||
*
|
||||
* @returns {Promise<NotificationsSettings>}
|
||||
*/
|
||||
getNotifications: async function() {
|
||||
return await api("settings/get_notifications", null, true);
|
||||
},
|
||||
|
||||
/**
|
||||
* Update (set) notifications settings
|
||||
*
|
||||
* @param {NotificationsSettings} settings
|
||||
*/
|
||||
setNotifications: async function(settings) {
|
||||
return await api("settings/set_notifications", settings, true);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user