You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
856 B
28 lines
856 B
/** 分组权限 */
|
|
export const GroupDefinitionsPermissions = {
|
|
/** 新增 */
|
|
Create: 'Notifications.GroupDefinitions.Create',
|
|
Default: 'Notifications.GroupDefinitions',
|
|
/** 删除 */
|
|
Delete: 'Notifications.GroupDefinitions.Delete',
|
|
/** 更新 */
|
|
Update: 'Notifications.GroupDefinitions.Update',
|
|
};
|
|
/** 通知定义权限 */
|
|
export const NotificationDefinitionsPermissions = {
|
|
/** 新增 */
|
|
Create: 'Notifications.Definitions.Create',
|
|
Default: 'Notifications.Definitions',
|
|
/** 删除 */
|
|
Delete: 'Notifications.Definitions.Delete',
|
|
/** 更新 */
|
|
Update: 'Notifications.Definitions.Update',
|
|
};
|
|
/** 通知权限 */
|
|
export const NotificationPermissions = {
|
|
/** 发送通知 */
|
|
Create: 'Notifications.Notification.Send',
|
|
Default: 'Notifications.Notification',
|
|
/** 删除 */
|
|
Delete: 'Notifications.Notification.Delete',
|
|
};
|
|
|