diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index e5648676..ff176d22 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -71,13 +71,8 @@ TODO: //MIGRATE_OUTSTANDING comment tag -currently doing: Review - todo: overdue warning / display - automatic internal notification when past due for now, maybe more to come later - notifies to UserId, notifies to AssignedbyId if different - needs LT key to send message - todo: on update or add completed date it needs to then update the notification and remove the overdue notification - todo: notification needs to translate lt keys +CURRENTLY DOING: just finished review and back to misc above + diff --git a/ayanova/src/views/ops-notify-queue.vue b/ayanova/src/views/ops-notify-queue.vue index ef0e380c..bf056511 100644 --- a/ayanova/src/views/ops-notify-queue.vue +++ b/ayanova/src/views/ops-notify-queue.vue @@ -88,7 +88,7 @@ export default { vm.formState.loading = true; window.$gz.form.deleteAllErrorBoxErrors(vm); - let res = await window.$gz.api.remove(`notify-event/${item.id}`); + let res = await window.$gz.api.remove(`notify/notify-event/${item.id}`); if (res.error) { vm.formState.serverError = res.error; window.$gz.form.setErrorBoxErrors(vm); @@ -148,7 +148,8 @@ export default { eventType: window.$gz.enums.get("NotifyEventType", o.eventType), ayaType: window.$gz.enums.get("core", o.ayaType), name: o.name, - userId: o.userId + userId: o.userId, + user: o.user }); }