Browse Source
Feature/move API key generation from experimental to general availability (#4540)
* Move API key generation from experimental to general availability
pull/4527/head^2
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
4 deletions
-
apps/client/src/app/components/user-account-membership/user-account-membership.html
|
|
@ -4,10 +4,7 @@ |
|
|
|
<div class="align-items-center d-flex flex-column"> |
|
|
|
<gf-membership-card |
|
|
|
[expiresAt]="user?.subscription?.expiresAt | date: defaultDateFormat" |
|
|
|
[hasPermissionToCreateApiKey]=" |
|
|
|
hasPermissionToCreateApiKey && |
|
|
|
user?.settings?.isExperimentalFeatures |
|
|
|
" |
|
|
|
[hasPermissionToCreateApiKey]="hasPermissionToCreateApiKey" |
|
|
|
[name]="user?.subscription?.type" |
|
|
|
(generateApiKeyClicked)="onGenerateApiKey()" |
|
|
|
/> |
|
|
|