0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-30 20:33:54 -05:00

chore(schemas): add reserved plan ID for admin tenant (#5976)

This commit is contained in:
Darcy Ye 2024-06-03 18:03:29 +08:00 committed by GitHub
parent 6e116b30df
commit 0748a22efb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,4 +26,9 @@ export enum ReservedPlanId {
*/
Pro = 'pro',
Development = 'dev',
/**
* This plan ID is reserved for Admin tenant.
* In our new pricing model, we plan to add a special plan for Admin tenant, previously, admin tenant is using the `pro` plan, which is not suitable.
*/
Admin = 'admin',
}