mirror of https://github.com/halo-dev/halo-admin
18 lines
342 B
TypeScript
18 lines
342 B
TypeScript
// plugin
|
|
export enum pluginLabels {
|
|
NAME = "plugin.halo.run/plugin-name",
|
|
}
|
|
|
|
// role
|
|
export enum roleLabels {
|
|
TEMPLATE = "halo.run/role-template",
|
|
}
|
|
|
|
// post
|
|
export enum postLabels {
|
|
DELETED = "content.halo.run/deleted",
|
|
OWNER = "content.halo.run/owner",
|
|
VISIBLE = "content.halo.run/visible",
|
|
PHASE = "content.halo.run/phase",
|
|
}
|