core: adjust label for clarity for core_default_app_access (#24326)

This commit is contained in:
Jens L.
2026-07-23 19:59:33 +01:00
committed by GitHub
parent f6e4c5f2fb
commit bf9159c3b9
5 changed files with 13 additions and 16 deletions

View File

@@ -17,10 +17,7 @@ class AppAccessWithoutBindings(Flag[bool], key="core_default_app_access"):
default = True
visibility = "none"
description = _(
"Configure if applications without any policy/group/user bindings "
"should be accessible to any user."
)
description = _("Applications with no policies bound can be accessed by any user.")
class AuthentikCoreConfig(ManagedAppConfig):

View File

@@ -19,7 +19,7 @@
*/
export interface CurrentBrandFlags {
/**
* Configure if applications without any policy/group/user bindings should be accessible to any user.
* Applications with no policies bound can be accessed by any user.
* @type {boolean}
* @memberof CurrentBrandFlags
*/

View File

@@ -19,7 +19,7 @@
*/
export interface PatchedSettingsRequestFlags {
/**
* Configure if applications without any policy/group/user bindings should be accessible to any user.
* Applications with no policies bound can be accessed by any user.
* @type {boolean}
* @memberof PatchedSettingsRequestFlags
*/

View File

@@ -37447,8 +37447,8 @@ components:
properties:
core_default_app_access:
type: boolean
description: Configure if applications without any policy/group/user
bindings should be accessible to any user.
description: Applications with no policies bound can be accessed by
any user.
enterprise_audit_include_expanded_diff:
type: boolean
description: Include additional information in audit logs, may incur
@@ -51582,8 +51582,8 @@ components:
properties:
core_default_app_access:
type: boolean
description: Configure if applications without any policy/group/user
bindings should be accessible to any user.
description: Applications with no policies bound can be accessed by
any user.
enterprise_audit_include_expanded_diff:
type: boolean
description: Include additional information in audit logs, may incur
@@ -56382,8 +56382,8 @@ components:
properties:
core_default_app_access:
type: boolean
description: Configure if applications without any policy/group/user
bindings should be accessible to any user.
description: Applications with no policies bound can be accessed by
any user.
enterprise_audit_include_expanded_diff:
type: boolean
description: Include additional information in audit logs, may incur
@@ -56471,8 +56471,8 @@ components:
properties:
core_default_app_access:
type: boolean
description: Configure if applications without any policy/group/user
bindings should be accessible to any user.
description: Applications with no policies bound can be accessed by
any user.
enterprise_audit_include_expanded_diff:
type: boolean
description: Include additional information in audit logs, may incur

View File

@@ -296,9 +296,9 @@ export class AdminSettingsForm extends Form<SettingsRequest> {
<ak-switch-input
name="flags.coreDefaultAppAccess"
?checked=${settings?.flags.coreDefaultAppAccess ?? true}
label=${msg("Require policies for application access")}
label=${msg("Allow application access with no policies")}
help=${msg(
"Configure if applications without any policy/group/user bindings should be accessible to any user.",
"Applications with no policies bound can be accessed by any user..",
)}
>
</ak-switch-input>