mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Add conditions for webhooks
This commit is contained in:
18
netbox/extras/migrations/0063_webhook_conditions.py
Normal file
18
netbox/extras/migrations/0063_webhook_conditions.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.2.8 on 2021-10-22 20:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('extras', '0062_clear_secrets_changelog'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='webhook',
|
||||
name='conditions',
|
||||
field=models.JSONField(blank=True, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user