mirror of
https://github.com/logto-io/logto.git
synced 2025-02-03 21:48:55 -05:00
refactor(schemas): add js-doc to tenant tag enum (#4909)
* refactor(schemas): add jsdoc to tenant tag enum * chore: code review fix Co-authored-by: Charles Zhao <charleszhao@silverhand.io> * chore: code review fix Co-authored-by: Charles Zhao <charleszhao@silverhand.io> --------- Co-authored-by: Charles Zhao <charleszhao@silverhand.io>
This commit is contained in:
parent
f880329d16
commit
651902c97d
1 changed files with 3 additions and 0 deletions
|
@ -1,5 +1,8 @@
|
||||||
export enum TenantTag {
|
export enum TenantTag {
|
||||||
|
/* Development tenants are free to use but are not meant to be used as production environment */
|
||||||
Development = 'development',
|
Development = 'development',
|
||||||
|
/* @deprecated */
|
||||||
Staging = 'staging',
|
Staging = 'staging',
|
||||||
|
/* A production tenant must have an associated subscription plan, even if it's a free plan */
|
||||||
Production = 'production',
|
Production = 'production',
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue