This commit is contained in:
2020-12-23 16:19:50 +00:00
parent 755c9375d3
commit f99c588cbd
2 changed files with 5 additions and 9 deletions

View File

@@ -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

View File

@@ -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
});
}