0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

feat(console): add impersonation price item (#6269)

This commit is contained in:
wangsijie 2024-07-19 16:44:22 +08:00 committed by GitHub
parent 4ac4f8cdb4
commit 156f5f5af4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 0 deletions

View file

@ -102,6 +102,7 @@ function PlanComparisonTable() {
const mfaPrice = t('monthly_price', { value: 48 }); const mfaPrice = t('monthly_price', { value: 48 });
const orgPrice = t('monthly_price', { value: 48 }); const orgPrice = t('monthly_price', { value: 48 });
const adaptiveMfa = t('user_authn.adaptive_mfa'); const adaptiveMfa = t('user_authn.adaptive_mfa');
const impersonation = t('user_authn.impersonation');
// User management // User management
const userManagement = t('user_management.user_management'); const userManagement = t('user_management.user_management');
@ -203,6 +204,7 @@ function PlanComparisonTable() {
name: adaptiveMfa, name: adaptiveMfa,
data: ['-', comingSoon, contact], data: ['-', comingSoon, contact],
}, },
{ name: impersonation, data: ['-', '✓', '✓'] },
], ],
}, },
{ {

View file

@ -37,6 +37,7 @@ const quota_table = {
mfa: 'Multi-factor authentication', mfa: 'Multi-factor authentication',
sso: 'Enterprise SSO', sso: 'Enterprise SSO',
adaptive_mfa: 'Adaptive MFA', adaptive_mfa: 'Adaptive MFA',
impersonation: 'Impersonation',
}, },
user_management: { user_management: {
title: 'User management', title: 'User management',