feat(core): Add GET /users endpoints to public API (#6360)

This commit is contained in:
Ricardo Espinoza
2023-06-21 07:22:00 -04:00
committed by GitHub
parent 25b92169ae
commit 6ab350209d
20 changed files with 679 additions and 39 deletions

View File

@@ -186,6 +186,10 @@ export class License {
return (this.getFeatureValue(LICENSE_QUOTAS.VARIABLES_LIMIT) ?? -1) as number;
}
getUsersLimit(): number {
return this.getFeatureValue(LICENSE_QUOTAS.USERS_LIMIT) as number;
}
getPlanName(): string {
return (this.getFeatureValue('planName') ?? 'Community') as string;
}