mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
core: adjust label for clarity for core_default_app_access (#24326)
This commit is contained in:
@@ -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):
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
@@ -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
|
||||
*/
|
||||
|
||||
16
schema.yml
16
schema.yml
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user