27 lines
785 B
Python
27 lines
785 B
Python
# Generated by Django 5.0.3 on 2024-03-21 15:42
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_brands", "0005_tenantuuid_to_branduuid"),
|
|
("authentik_core", "0033_alter_user_options"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="brand",
|
|
name="default_application",
|
|
field=models.ForeignKey(
|
|
default=None,
|
|
help_text="When set, external users will be redirected to this application after authenticating.",
|
|
null=True,
|
|
on_delete=django.db.models.deletion.SET_DEFAULT,
|
|
to="authentik_core.application",
|
|
),
|
|
),
|
|
]
|