mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -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 {
|
||||
/* Development tenants are free to use but are not meant to be used as production environment */
|
||||
Development = 'development',
|
||||
/* @deprecated */
|
||||
Staging = 'staging',
|
||||
/* A production tenant must have an associated subscription plan, even if it's a free plan */
|
||||
Production = 'production',
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue