Support for One-Click-Actions.
This commit is contained in:
31
dav_events/migrations/0007_auto_20180129_1117.py
Normal file
31
dav_events/migrations/0007_auto_20180129_1117.py
Normal file
@@ -0,0 +1,31 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.9 on 2018-01-29 11:17
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dav_events', '0006_oneclickaction'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='oneclickaction',
|
||||
name='allow_repeat',
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='oneclickaction',
|
||||
name='command',
|
||||
field=models.CharField(choices=[(b'EA', b'accept event'), (b'EP', b'mark event as published')], default='EA', max_length=2),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='oneclickaction',
|
||||
name='parameters',
|
||||
field=models.TextField(blank=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user