This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/policies/matcher/migrations/0001_initial.py

65 lines
2.0 KiB
Python
Raw Normal View History

2019-10-07 14:33:48 +00:00
# Generated by Django 2.2.6 on 2019-10-07 14:07
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
2019-12-31 11:51:16 +00:00
("passbook_core", "0001_initial"),
2019-10-07 14:33:48 +00:00
]
operations = [
migrations.CreateModel(
2019-12-31 11:51:16 +00:00
name="FieldMatcherPolicy",
2019-10-07 14:33:48 +00:00
fields=[
2019-12-31 11:51:16 +00:00
(
"policy_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="passbook_core.Policy",
),
),
(
"user_field",
models.TextField(
choices=[
("username", "Username"),
("name", "Name"),
("email", "E-Mail"),
("is_staff", "Is staff"),
("is_active", "Is active"),
("data_joined", "Date joined"),
]
),
),
(
"match_action",
models.CharField(
choices=[
("startswith", "Starts with"),
("endswith", "Ends with"),
("contains", "Contains"),
("regexp", "Regexp"),
("exact", "Exact"),
],
max_length=50,
),
),
("value", models.TextField()),
2019-10-07 14:33:48 +00:00
],
options={
2019-12-31 11:51:16 +00:00
"verbose_name": "Field matcher Policy",
"verbose_name_plural": "Field matcher Policies",
2019-10-07 14:33:48 +00:00
},
2019-12-31 11:51:16 +00:00
bases=("passbook_core.policy",),
2019-10-07 14:33:48 +00:00
),
]