core: Add Webhook Rule

This commit is contained in:
Jens Langhammer
2018-11-27 16:23:04 +01:00
parent cde35515c7
commit 4b047802c0
5 changed files with 130 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.1.3 on 2018-11-27 13:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('passbook_ldap', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='ldapsource',
name='type',
field=models.CharField(choices=[('ad', 'Active Directory'), ('generic', 'Generic')], max_length=20),
),
]