| 12345678910111213141516171819 |
- /**
- * global notifcation event master
- */
- export const GlobalNotificationSettingEvent = {
- PAGE_CREATE: 'pageCreate',
- PAGE_EDIT: 'pageEdit',
- PAGE_DELETE: 'pageDelete',
- PAGE_MOVE: 'pageMove',
- PAGE_LIKE: 'pageLike',
- COMMENT: 'comment',
- };
- /**
- * global notifcation type master
- */
- export const GlobalNotificationSettingEventType = {
- MAIL: 'mail',
- SLACK: 'slack',
- };
|