mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
878 B
24 lines
878 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.28 on 2020-04-19 00:25
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('preferences', '0069_optionaluser_disable_emailnotyetconfirmed'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='optionaluser',
|
|
name='self_change_room',
|
|
),
|
|
migrations.AddField(
|
|
model_name='optionaluser',
|
|
name='self_room_policy',
|
|
field=models.CharField(choices=[('DISABLED', "Users can't select their room"), ('ONLY_INACTIVE', 'Users can only select a room occupied by a user with a disabled connection.'), ('ALL_ROOM', 'Users can select all rooms')], default='DISABLED', help_text='Policy on self users room edition', max_length=32),
|
|
),
|
|
]
|
|
|