mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(core,phrases): add notice that protected app is cloud only (#5385)
This commit is contained in:
parent
715dba2ce2
commit
f3c6028e00
18 changed files with 35 additions and 20 deletions
|
@ -3,7 +3,7 @@
|
|||
"/api/applications/{id}/protected-app-metadata/custom-domains": {
|
||||
"get": {
|
||||
"summary": "Get the list of custom domains of the protected application.",
|
||||
"description": "Get the list of custom domains of the protected application.",
|
||||
"description": "Get the list of custom domains of the protected application. This feature is not available for open source version.",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "The domain list of the protected application."
|
||||
|
@ -15,7 +15,7 @@
|
|||
},
|
||||
"post": {
|
||||
"summary": "Add a custom domain to the protected application.",
|
||||
"description": "Add a custom domain to the protected application. You'll need to setup DNS record later.",
|
||||
"description": "Add a custom domain to the protected application. You'll need to setup DNS record later. This feature is not available for open source version.",
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
|
@ -45,7 +45,7 @@
|
|||
"/api/applications/{id}/protected-app-metadata/custom-domains/{domain}": {
|
||||
"delete": {
|
||||
"summary": "Delete a custom domain.",
|
||||
"description": "Add a custom domain.",
|
||||
"description": "Add a custom domain. This feature is not available for open source version.",
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "The domain has been deleted."
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"schema": {
|
||||
"properties": {
|
||||
"protectedAppMetadata": {
|
||||
"description": "The data for protected app.",
|
||||
"description": "The data for protected app, this feature is not available for open source version.",
|
||||
"properties": {
|
||||
"subDomain": {
|
||||
"description": "The subdomain prefix, e.g., my-site."
|
||||
|
|
|
@ -57,7 +57,7 @@ const createRouters = (tenant: TenantContext) => {
|
|||
applicationUserConsentOrganizationRoutes(managementRouter, tenant);
|
||||
|
||||
// FIXME: @wangsijie: remove this after the feature is enabled by default
|
||||
if (EnvSet.values.isDevFeaturesEnabled) {
|
||||
if (!EnvSet.values.isCloud) {
|
||||
applicationProtectedAppMetadataRoutes(managementRouter, tenant);
|
||||
}
|
||||
|
||||
|
|
|
@ -11,7 +11,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Geschützte App-Metadaten sind erforderlich.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -8,7 +8,8 @@ const application = {
|
|||
user_consent_scopes_not_found: 'Invalid user consent scopes.',
|
||||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Protected app metadata is required.',
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
protected_application_only: 'The feature is only available for protected applications.',
|
||||
protected_application_misconfigured: 'Protected application is misconfigured.',
|
||||
|
|
|
@ -11,7 +11,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Se requiere metadatos de aplicación protegida.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -12,7 +12,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: "Les métadonnées d'application protégée sont requises.",
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -12,7 +12,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Protected app metadata is required.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -11,7 +11,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Protected app metadata is required.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -10,7 +10,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: '보호된 응용 프로그램 메타데이터가 필요합니다.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -10,7 +10,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Wymagane jest zabezpieczone metadane aplikacji.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -11,7 +11,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Protegido metadados do app é necessário.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -11,7 +11,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Protected app metadata is required.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -12,7 +12,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Требуется защищенная метаданные приложения.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -10,7 +10,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: 'Protected app metadata is required.',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -9,7 +9,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: '需要保护的应用程序元数据。',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -9,7 +9,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: '保護應用程式元數據是必需的。',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
|
@ -9,7 +9,8 @@ const application = {
|
|||
consent_management_api_scopes_not_allowed: 'Management API scopes are not allowed.',
|
||||
protected_app_metadata_is_required: '需要保護應用程式元數據。',
|
||||
/** UNTRANSLATED */
|
||||
protected_app_not_configured: 'Protected app provider is not configured.',
|
||||
protected_app_not_configured:
|
||||
'Protected app provider is not configured. This feature is not available for open source version.',
|
||||
/** UNTRANSLATED */
|
||||
cloudflare_unknown_error: 'Got unknown error when requesting Cloudflare API',
|
||||
/** UNTRANSLATED */
|
||||
|
|
Loading…
Add table
Reference in a new issue