Update edx-enterprise to 3.17.11 and edx-rbac to 1.4.1; Adds an optional applies_to_all_contexts field to the SystemWideRoleAssignment model.

This commit is contained in:
Alex Dusenbery
2021-01-25 09:09:02 -05:00
committed by Alex Dusenbery
parent 2de62ccf3a
commit 135e9acf5f
5 changed files with 25 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.2.17 on 2021-01-21 21:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('system_wide_roles', '0002_add_system_wide_student_support_role'),
]
operations = [
migrations.AddField(
model_name='systemwideroleassignment',
name='applies_to_all_contexts',
field=models.BooleanField(default=False, help_text='If true, indicates that the user is effectively assigned their role for any and all contexts. Defaults to False.'),
),
]