diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 899433169..34b91ec57 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -25,5 +25,10 @@ If applicable, add screenshots to help explain your problem. - Browser [e.g. chrome, safari] - Version [e.g. 22] +**Good Places to Start** + +_Link to a specific directory / file / line that would be a good place to +start working on this task. The more specific the better._ + **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/new_task.md b/.github/ISSUE_TEMPLATE/new_task.md index a014f32b1..6dbba4712 100644 --- a/.github/ISSUE_TEMPLATE/new_task.md +++ b/.github/ISSUE_TEMPLATE/new_task.md @@ -6,12 +6,15 @@ about: A template for a new task ## Task Description - - ## Acceptance Criteria - [ ] ... - [ ] ... +## Good Places to Start + +_Link to a specific directory / file / line that would be a good place to +start working on this task. The more specific the better._ + ### Analytics Requirements - [ ] ... diff --git a/cfl_common/common/migrations/0055_alter_schoolteacherinvitation_token.py b/cfl_common/common/migrations/0055_alter_schoolteacherinvitation_token.py new file mode 100644 index 000000000..e9ab58b2d --- /dev/null +++ b/cfl_common/common/migrations/0055_alter_schoolteacherinvitation_token.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.25 on 2024-09-27 16:04 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('common', '0054_delete_aimmo_models'), + ] + + operations = [ + migrations.AlterField( + model_name='schoolteacherinvitation', + name='token', + field=models.CharField(max_length=88), + ), + ] diff --git a/cfl_common/common/models.py b/cfl_common/common/models.py index bed7dc44b..b589dcdf1 100644 --- a/cfl_common/common/models.py +++ b/cfl_common/common/models.py @@ -152,7 +152,7 @@ def get_queryset(self): class SchoolTeacherInvitation(models.Model): - token = models.CharField(max_length=32) + token = models.CharField(max_length=88) school = models.ForeignKey( School, related_name="teacher_invitations", diff --git a/portal/__init__.py b/portal/__init__.py index b5d700de1..e179c0503 100644 --- a/portal/__init__.py +++ b/portal/__init__.py @@ -1 +1 @@ -__version__ = "7.3.4" +__version__ = "7.3.5"