mirror of
https://github.com/docmost/docmost.git
synced 2026-05-11 00:44:07 +08:00
59e945562d
* Add page_hierarchy table * feat(ee): page-level permissions * pagination * rename migration fixes * fix * tabs * fix theme * cleanup * sync * page permissions notification * other fixes * sharing disbled * fix column nodes * toggle error handling
11 lines
360 B
TypeScript
11 lines
360 B
TypeScript
export const NotificationType = {
|
|
COMMENT_USER_MENTION: 'comment.user_mention',
|
|
COMMENT_CREATED: 'comment.created',
|
|
COMMENT_RESOLVED: 'comment.resolved',
|
|
PAGE_USER_MENTION: 'page.user_mention',
|
|
PAGE_PERMISSION_GRANTED: 'page.permission_granted',
|
|
} as const;
|
|
|
|
export type NotificationType =
|
|
(typeof NotificationType)[keyof typeof NotificationType];
|