refs #4797 refactor(workerNotification): const url_key
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2023-11-10 08:09:17 +01:00
parent 9993344d70
commit 54276b2460
1 changed files with 5 additions and 4 deletions

View File

@ -19,16 +19,17 @@ const route = useRoute();
const { t } = useI18n();
const quasar = useQuasar();
const entityId = computed(() => $props.id || route.params.id);
const URL_KEY = 'NotificationSubscriptions';
const active = ref();
const available = ref();
async function toggleNotification(notification) {
try {
if (!notification.active) {
await axios.delete(`NotificationSubscriptions/${notification.id}`);
await axios.delete(`${URL_KEY}/${notification.id}`);
swapEntry(active.value, available.value, notification.notificationFk);
} else {
const { data } = await axios.post(`NotificationSubscriptions`, {
const { data } = await axios.post(URL_KEY, {
notificationFk: notification.notificationFk,
userFk: entityId.value,
});
@ -63,8 +64,8 @@ function setNotifications(data) {
<template>
<CrudModel
auto-load
data-key="NotificationSubscriptions"
:url="`NotificationSubscriptions/${entityId}/getList`"
:data-key="URL_KEY"
:url="`${URL_KEY}/${entityId}/getList`"
:default-reset="false"
:default-remove="false"
:default-save="false"