Browse Source

Add Slack integration

pull/7/head
Pēteris Caune 9 years ago
parent
commit
00e75bc59d
1 changed files with 19 additions and 0 deletions
  1. +19
    -0
      hc/api/migrations/0012_auto_20150930_1922.py

+ 19
- 0
hc/api/migrations/0012_auto_20150930_1922.py View File

@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('api', '0011_notification'),
]
operations = [
migrations.AlterField(
model_name='channel',
name='kind',
field=models.CharField(choices=[('email', 'Email'), ('webhook', 'Webhook'), ('slack', 'Slack'), ('pd', 'PagerDuty')], max_length=20),
),
]

Loading…
Cancel
Save