1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-21 17:15:17 +00:00

Can delete notifications related to a friendship request

This commit is contained in:
2020-03-24 18:29:56 +01:00
parent 4bf99cb550
commit 9ced519618
3 changed files with 47 additions and 9 deletions

View File

@ -53,9 +53,9 @@ export interface NotifBuilder {
seen ?: boolean,
fromUserID: number,
destUserID ?: number,
onElemID: number,
onElemID ?: number,
onElemType: NotifElemType,
type: NotifEventType,
type ?: NotifEventType,
eventVisibility ?: NotifEventVisibility,
fromContainerID ?: number,
fromContainerType ?: NotifElemType
@ -67,9 +67,9 @@ export class Notif implements NotifBuilder {
seen ?: boolean;
fromUserID: number;
destUserID ?: number;
onElemID: number;
onElemID ?: number;
onElemType: NotifElemType;
type: NotifEventType;
type ?: NotifEventType;
eventVisibility ?: NotifEventVisibility;
fromContainerID ?: number;
fromContainerType ?: NotifElemType;