this runs with a basic model and even more basic test, but I'm not committing those yet as I'm still playing with the model (lest I make 30 revisions right off the bat) Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
26 lines
761 B
Python
26 lines
761 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('ircbot', '0010_auto_20150620_0930'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='botuser',
|
|
options={'permissions': (('quit_bot', 'Can tell the bot to quit via IRC'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='ircchannel',
|
|
options={'permissions': (('manage_current_channels', 'Can join/part channels via IRC'),)},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='ircplugin',
|
|
options={'ordering': ['path'], 'permissions': (('manage_loaded_plugins', 'Can load/unload plugins via IRC'),)},
|
|
),
|
|
]
|