
* stages/email: fix email scanner voiding flow token Signed-off-by: Jens Langhammer <jens@goauthentik.io> * misc Signed-off-by: Jens Langhammer <jens@goauthentik.io> * improve consent stage error handling and testing Signed-off-by: Jens Langhammer <jens@goauthentik.io> * draw the rest of the owl Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add e2e test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix tests Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix Signed-off-by: Jens Langhammer <jens@goauthentik.io> * idk why this is broken now? Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix other e2e test Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix the other test too Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io>
19 lines
410 B
Python
19 lines
410 B
Python
# Generated by Django 5.1.9 on 2025-05-27 12:52
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_flows", "0027_auto_20231028_1424"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="flowtoken",
|
|
name="revoke_on_execution",
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|