mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
# Generated by Django 5.0rc1 on 2023-11-22 08:15
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0100_opsgenie_values"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="channel",
|
|
name="kind",
|
|
field=models.CharField(
|
|
choices=[
|
|
("apprise", "Apprise"),
|
|
("call", "Phone Call"),
|
|
("discord", "Discord"),
|
|
("email", "Email"),
|
|
("gotify", "Gotify"),
|
|
("group", "Group"),
|
|
("hipchat", "HipChat"),
|
|
("linenotify", "LINE Notify"),
|
|
("matrix", "Matrix"),
|
|
("mattermost", "Mattermost"),
|
|
("msteams", "Microsoft Teams"),
|
|
("ntfy", "ntfy"),
|
|
("opsgenie", "Opsgenie"),
|
|
("pagerteam", "Pager Team"),
|
|
("pagertree", "PagerTree"),
|
|
("pd", "PagerDuty"),
|
|
("po", "Pushover"),
|
|
("pushbullet", "Pushbullet"),
|
|
("rocketchat", "Rocket.Chat"),
|
|
("shell", "Shell Command"),
|
|
("signal", "Signal"),
|
|
("slack", "Slack"),
|
|
("sms", "SMS"),
|
|
("spike", "Spike"),
|
|
("telegram", "Telegram"),
|
|
("trello", "Trello"),
|
|
("victorops", "Splunk On-Call"),
|
|
("webhook", "Webhook"),
|
|
("whatsapp", "WhatsApp"),
|
|
("zendesk", "Zendesk"),
|
|
("zulip", "Zulip"),
|
|
],
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|