stages/user_write: fix migration setting wrong value, fix form
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
894873b373
commit
b99afd82b2
|
@ -11,9 +11,9 @@ def migrate_to_user_creation_mode(apps: Apps, schema_editor: BaseDatabaseSchemaE
|
||||||
|
|
||||||
for stage in UserWriteStage.objects.using(schema_editor.connection.alias).all():
|
for stage in UserWriteStage.objects.using(schema_editor.connection.alias).all():
|
||||||
if stage.can_create_users:
|
if stage.can_create_users:
|
||||||
stage.user_creation_mode = UserCreationMode.NEVER_CREATE
|
|
||||||
else:
|
|
||||||
stage.user_creation_mode = UserCreationMode.CREATE_WHEN_REQUIRED
|
stage.user_creation_mode = UserCreationMode.CREATE_WHEN_REQUIRED
|
||||||
|
else:
|
||||||
|
stage.user_creation_mode = UserCreationMode.NEVER_CREATE
|
||||||
stage.save()
|
stage.save()
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ export class UserWriteStageForm extends ModelForm<UserWriteStage, string> {
|
||||||
<ak-form-group .expanded=${true}>
|
<ak-form-group .expanded=${true}>
|
||||||
<span slot="header"> ${t`Stage-specific settings`} </span>
|
<span slot="header"> ${t`Stage-specific settings`} </span>
|
||||||
<div slot="body" class="pf-c-form">
|
<div slot="body" class="pf-c-form">
|
||||||
<ak-form-element-horizontal name="canCreateUsers">
|
<ak-form-element-horizontal name="userCreationMode">
|
||||||
<ak-radio
|
<ak-radio
|
||||||
.options=${[
|
.options=${[
|
||||||
{
|
{
|
||||||
|
|
|
@ -115,6 +115,10 @@ image:
|
||||||
- web/elements: fix SearchSelect not working on safari
|
- web/elements: fix SearchSelect not working on safari
|
||||||
- web/flows: fix flow executor background overlay in safari
|
- web/flows: fix flow executor background overlay in safari
|
||||||
|
|
||||||
|
## Fixed in 2023.1.2
|
||||||
|
|
||||||
|
- stages/user_write: fix migration setting wrong value, fix form
|
||||||
|
|
||||||
## API Changes
|
## API Changes
|
||||||
|
|
||||||
#### What's Deleted
|
#### What's Deleted
|
||||||
|
|
Reference in New Issue