add exam authors to collection/exam base

This commit is contained in:
Ross
2024-02-27 15:07:42 +00:00
parent f2b4e05ba5
commit 444ff0e983
8 changed files with 121 additions and 5 deletions
@@ -0,0 +1,18 @@
# Generated by Django 5.0.2 on 2024-02-27 14:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rapids', '0007_alter_exam_exam_questions'),
]
operations = [
migrations.AlterField(
model_name='exam',
name='authors_only',
field=models.BooleanField(default=False, help_text='If true only exam/collection authors will be able to view.'),
),
]