fixes #4797 Seccion Worker/Notification #51

Merged
alexandre merged 23 commits from 4797-worker-notification-selector into dev 2023-05-15 09:42:17 +00:00
1 changed files with 1 additions and 7 deletions
Showing only changes of commit 52988f6299 - Show all commits

View File

@ -210,16 +210,10 @@ async function toggleNotif(notif, chip) {
message: t('worker.notificationsManager.subscribed'),
});
} else {
const token = await getToken();
const tokenUser = await axios.get(`AccessTokens/${token}/user`);
console.log(tokenUser);
await axios.post(
`NotificationSubscriptions/deleteNotification`,
{
userFk: entityId.value,
notificationFk: notif.id,
notificationId: this.worker.subscribedNotifs.find((sub) => sub.notificationFk == notif.id).id,
},
{
headers: {