mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# Generated by Django 3.0.4 on 2020-04-11 13:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("api", "0069_auto_20200117_1227"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="channel",
|
|
name="kind",
|
|
field=models.CharField(
|
|
choices=[
|
|
("email", "Email"),
|
|
("webhook", "Webhook"),
|
|
("hipchat", "HipChat"),
|
|
("slack", "Slack"),
|
|
("pd", "PagerDuty"),
|
|
("pagertree", "PagerTree"),
|
|
("pagerteam", "Pager Team"),
|
|
("po", "Pushover"),
|
|
("pushbullet", "Pushbullet"),
|
|
("opsgenie", "OpsGenie"),
|
|
("victorops", "VictorOps"),
|
|
("discord", "Discord"),
|
|
("telegram", "Telegram"),
|
|
("sms", "SMS"),
|
|
("zendesk", "Zendesk"),
|
|
("trello", "Trello"),
|
|
("matrix", "Matrix"),
|
|
("whatsapp", "WhatsApp"),
|
|
("apprise", "Apprise"),
|
|
("mattermost", "Mattermost"),
|
|
("msteams", "Microsoft Teams"),
|
|
("shell", "Shell Command"),
|
|
("zulip", "Zulip"),
|
|
],
|
|
max_length=20,
|
|
),
|
|
),
|
|
]
|