# 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>
18 lines
409 B
Python
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),
|
|
),
|
|
]
|