oncall-engine/engine/apps/webhooks/migrations/0007_webhookresponse_event_data.py
Rares Mardare 5ebf437283
Rares/add template editor to webhooks (#2455)
# What this PR does

Bring new Jinja editor to webhooks

## Which issue(s) this PR fixes

https://github.com/grafana/oncall/issues/2344

## Checklist

- [ ] Unit, integration, and e2e (if applicable) tests updated
- [ ] Documentation added (or `pr:no public docs` PR label added if not
required)
- [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not
required)

---------

Co-authored-by: Maxim <maxim.mordasov@grafana.com>
Co-authored-by: Michael Derynck <michael.derynck@grafana.com>
2023-07-11 18:03:34 +00:00

18 lines
409 B
Python

# Generated by Django 3.2.19 on 2023-07-05 18:46
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('webhooks', '0006_auto_20230426_1631'),
]
operations = [
migrations.AddField(
model_name='webhookresponse',
name='event_data',
field=models.TextField(default=None, null=True),
),
]