consts.ts 381 B

12345678910111213141516171819
  1. /**
  2. * global notifcation event master
  3. */
  4. export const GlobalNotificationSettingEvent = {
  5. PAGE_CREATE: 'pageCreate',
  6. PAGE_EDIT: 'pageEdit',
  7. PAGE_DELETE: 'pageDelete',
  8. PAGE_MOVE: 'pageMove',
  9. PAGE_LIKE: 'pageLike',
  10. COMMENT: 'comment',
  11. };
  12. /**
  13. * global notifcation type master
  14. */
  15. export const GlobalNotificationSettingEventType = {
  16. MAIL: 'mail',
  17. SLACK: 'slack',
  18. };