2026-03-28 08:23:21 +00:00
|
|
|
|
export const GLOBAL_SEARCH = 'App.Definitions.GlobalSearch'
|
|
|
|
|
|
export const AI_ASSISTANT = 'App.Definitions.AiBot.Asistant'
|
2026-08-09 08:52:28 +00:00
|
|
|
|
|
|
|
|
|
|
/** Veritabanı migration + seed tetikleme yetkisi (host tarafı). */
|
|
|
|
|
|
export const DB_MIGRATE = 'App.Setup.Migrate'
|
2026-08-10 13:53:24 +00:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 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
|