web/admin: default to disable policy execution logging
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
a7cf454760
commit
243be8f7bb
|
@ -59,7 +59,7 @@ export class DummyPolicyForm extends ModelForm<DummyPolicy, string> {
|
|||
<input
|
||||
class="pf-c-switch__input"
|
||||
type="checkbox"
|
||||
?checked=${first(this.instance?.executionLogging, true)}
|
||||
?checked=${first(this.instance?.executionLogging, false)}
|
||||
/>
|
||||
<span class="pf-c-switch__toggle">
|
||||
<span class="pf-c-switch__toggle-icon">
|
||||
|
|
|
@ -61,7 +61,7 @@ export class EventMatcherPolicyForm extends ModelForm<EventMatcherPolicy, string
|
|||
<input
|
||||
class="pf-c-switch__input"
|
||||
type="checkbox"
|
||||
?checked=${first(this.instance?.executionLogging, true)}
|
||||
?checked=${first(this.instance?.executionLogging, false)}
|
||||
/>
|
||||
<span class="pf-c-switch__toggle">
|
||||
<span class="pf-c-switch__toggle-icon">
|
||||
|
|
|
@ -59,7 +59,7 @@ export class PasswordExpiryPolicyForm extends ModelForm<PasswordExpiryPolicy, st
|
|||
<input
|
||||
class="pf-c-switch__input"
|
||||
type="checkbox"
|
||||
?checked=${first(this.instance?.executionLogging, true)}
|
||||
?checked=${first(this.instance?.executionLogging, false)}
|
||||
/>
|
||||
<span class="pf-c-switch__toggle">
|
||||
<span class="pf-c-switch__toggle-icon">
|
||||
|
|
|
@ -237,7 +237,7 @@ export class PasswordPolicyForm extends ModelForm<PasswordPolicy, string> {
|
|||
<input
|
||||
class="pf-c-switch__input"
|
||||
type="checkbox"
|
||||
?checked=${first(this.instance?.executionLogging, true)}
|
||||
?checked=${first(this.instance?.executionLogging, false)}
|
||||
/>
|
||||
<span class="pf-c-switch__toggle">
|
||||
<span class="pf-c-switch__toggle-icon">
|
||||
|
|
|
@ -68,7 +68,7 @@ export class ReputationPolicyForm extends ModelForm<ReputationPolicy, string> {
|
|||
<input
|
||||
class="pf-c-switch__input"
|
||||
type="checkbox"
|
||||
?checked=${first(this.instance?.executionLogging, true)}
|
||||
?checked=${first(this.instance?.executionLogging, false)}
|
||||
/>
|
||||
<span class="pf-c-switch__toggle">
|
||||
<span class="pf-c-switch__toggle-icon">
|
||||
|
|
Reference in New Issue