53 lines
2.1 KiB
Python
53 lines
2.1 KiB
Python
# Generated by Django 3.1.6 on 2021-02-02 18:21
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("authentik_events", "0011_notification_rules_default_v1"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="notificationtransport",
|
|
name="send_once",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Only send notification once, for example when sending a webhook into a chat channel.",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="event",
|
|
name="action",
|
|
field=models.TextField(
|
|
choices=[
|
|
("login", "Login"),
|
|
("login_failed", "Login Failed"),
|
|
("logout", "Logout"),
|
|
("user_write", "User Write"),
|
|
("suspicious_request", "Suspicious Request"),
|
|
("password_set", "Password Set"),
|
|
("token_view", "Token View"),
|
|
("invitation_used", "Invite Used"),
|
|
("authorize_application", "Authorize Application"),
|
|
("source_linked", "Source Linked"),
|
|
("impersonation_started", "Impersonation Started"),
|
|
("impersonation_ended", "Impersonation Ended"),
|
|
("policy_execution", "Policy Execution"),
|
|
("policy_exception", "Policy Exception"),
|
|
("property_mapping_exception", "Property Mapping Exception"),
|
|
("system_task_execution", "System Task Execution"),
|
|
("system_task_exception", "System Task Exception"),
|
|
("configuration_error", "Configuration Error"),
|
|
("model_created", "Model Created"),
|
|
("model_updated", "Model Updated"),
|
|
("model_deleted", "Model Deleted"),
|
|
("update_available", "Update Available"),
|
|
("custom_", "Custom Prefix"),
|
|
]
|
|
),
|
|
),
|
|
]
|