|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
1965 |
stevensc |
1 |
import { axios } from '@app/utils'
|
|
|
2 |
|
|
|
3 |
export const changeNotifications = async (data) => {
|
|
|
4 |
const res = await axios.post('/account-settings/notification', data)
|
|
|
5 |
const results = res.data
|
|
|
6 |
return results
|
|
|
7 |
}
|