Add notifications in the client
This commit is contained in:
parent
f7cc67b455
commit
2f1548fda3
56 changed files with 1073 additions and 112 deletions
|
@ -1,8 +1,7 @@
|
|||
export enum UserNotificationSettingValue {
|
||||
NONE = 1,
|
||||
WEB_NOTIFICATION = 2,
|
||||
EMAIL = 3,
|
||||
WEB_NOTIFICATION_AND_EMAIL = 4
|
||||
NONE = 0,
|
||||
WEB = 1 << 0,
|
||||
EMAIL = 1 << 1
|
||||
}
|
||||
|
||||
export interface UserNotificationSetting {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue