mirror of https://github.com/requarks/wiki
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.
16 lines
404 B
16 lines
404 B
/**
|
|
* Generated IDs handed to each model's `init()` during first-run seeding.
|
|
*
|
|
* Built in `core/config.ts` → `initDbValues()`, mixing freshly generated UUIDs with the fixed
|
|
* system IDs declared in `base.yml`.
|
|
*/
|
|
export interface SystemIds {
|
|
groupAdminId: string
|
|
groupUserId: string
|
|
groupGuestId: string
|
|
siteId: string
|
|
authModuleId: string
|
|
userAdminId: string
|
|
userGuestId: string
|
|
}
|