Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 5.2.10 on 2026-01-16 09:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("api", "0005_accesstoken_token_checksum_refreshtoken_token_family_and_more"),
]

operations = [
migrations.AlterField(
model_name="application",
name="authorization_grant_type",
field=models.CharField(
choices=[
("authorization-code", "Authorization code"),
("urn:ietf:params:oauth:grant-type:device_code", "Device Code"),
("implicit", "Implicit"),
("password", "Resource owner password-based"),
("client-credentials", "Client credentials"),
("openid-hybrid", "OpenID connect hybrid"),
],
max_length=44,
),
),
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by Django 5.2.10 on 2026-01-16 09:51

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("questionnaires", "0002_question_use_saved_answers_alter_question_archived"),
]

operations = [
migrations.AlterField(
model_name="question",
name="use_saved_answers",
field=models.BooleanField(
default=False,
help_text="If checked, forms will be prefilled with a users saved answer to this question, if available. Enable this if answers are independent of the event the question is used for.",
verbose_name="Use saved answers",
),
),
]
Loading