1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 16:45:16 +00:00

Can create groups membership notifications (moderator > user)

This commit is contained in:
2020-03-24 18:47:34 +01:00
parent 9ced519618
commit 59925dab45
4 changed files with 65 additions and 4 deletions

View File

@ -51,7 +51,7 @@ export interface NotifBuilder {
id ?: number,
timeCreate ?: number,
seen ?: boolean,
fromUserID: number,
fromUserID ?: number,
destUserID ?: number,
onElemID ?: number,
onElemType: NotifElemType,
@ -65,7 +65,7 @@ export class Notif implements NotifBuilder {
id ?: number;
timeCreate ?: number;
seen ?: boolean;
fromUserID: number;
fromUserID ?: number;
destUserID ?: number;
onElemID ?: number;
onElemType: NotifElemType;