0
Fork 0
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:
wangsijie 2023-11-21 11:35:07 +08:00 committed by GitHub
parent f880329d16
commit 651902c97d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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',
}