Restrict groups by state.

This commit is contained in:
colcrunch
2018-10-09 02:06:44 +00:00
committed by Basraah
parent 623e77a268
commit 9dd8357f67
5 changed files with 57 additions and 13 deletions

View File

@@ -0,0 +1,19 @@
# Generated by Django 2.0.6 on 2018-07-11 00:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authentication', '0016_ownershiprecord'),
('groupmanagement', '0008_remove_authgroup_permissions'),
]
operations = [
migrations.AddField(
model_name='authgroup',
name='states',
field=models.ManyToManyField(blank=True, help_text='States listed here will have the ability to join this group provided they have the proper permissions.', related_name='valid_states', to='authentication.State'),
),
]