17 lines
621 B
TypeScript
17 lines
621 B
TypeScript
export const GLOBAL_SEARCH = 'App.Definitions.GlobalSearch'
|
||
export const AI_ASSISTANT = 'App.Definitions.AiBot.Asistant'
|
||
|
||
/** Veritabanı migration + seed tetikleme yetkisi (host tarafı). */
|
||
export const DB_MIGRATE = 'App.Setup.Migrate'
|
||
|
||
/**
|
||
* Public site sayfalarının tasarım modu yetkileri.
|
||
* Sunucuda `PermissionsData.json` içinde tanımlıdır ve seeder ile yönetilir;
|
||
* asıl kontrol `PublicAppService.Save*PageAsync` üzerindedir.
|
||
*/
|
||
export const PUBLIC_PAGE_DESIGN = {
|
||
HOME: 'App.Home.Design',
|
||
ABOUT: 'App.About.Design',
|
||
SERVICES: 'App.Services.Design',
|
||
CONTACT: 'App.Contact.Design',
|
||
} as const
|