You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added two new configuration settings for the review team secretary,
one to set how many days to include in the reviewers list, and
another one to limit the number of completed items in the list for
each person. This version replaces the one I did earlier, and includes
much more test cases to test different limits on the reviewers page.
Commit ready for merge.
- Legacy-Id: 17034
MAX_CLOSED_REQS=10# This keeps the overview page with being filled with too many closed requests, since the focus should be on open or recently closed per reviewer
# Copyright The IETF Trust 2019, All Rights Reserved
2
+
# -*- coding: utf-8 -*-
3
+
# Generated by Django 1.11.26 on 2019-11-15 20:59
4
+
from __future__ importunicode_literals
5
+
6
+
fromdjango.dbimportmigrations, models
7
+
8
+
9
+
classMigration(migrations.Migration):
10
+
11
+
dependencies= [
12
+
('review', '0019_auto_20191023_0829'),
13
+
]
14
+
15
+
operations= [
16
+
migrations.AddField(
17
+
model_name='reviewsecretarysettings',
18
+
name='days_to_show_in_reviewer_list',
19
+
field=models.IntegerField(blank=True, help_text='Maximum number of days to show in reviewer list for completed items.', null=True),
20
+
),
21
+
migrations.AddField(
22
+
model_name='reviewsecretarysettings',
23
+
name='max_items_to_show_in_reviewer_list',
24
+
field=models.IntegerField(blank=True, help_text='Maximum number of completed items to show for one reviewer in the reviewer list view, the list is also filtered by the days to show in reviews list setting.', null=True),
remind_days_before_deadline=models.IntegerField(null=True, blank=True, help_text="To get an email reminder in case a reviewer forgets to do an assigned review, enter the number of days before review deadline you want to receive it. Clear the field if you don't want a reminder.")
55
+
max_items_to_show_in_reviewer_list=models.IntegerField(null=True, blank=True, help_text="Maximum number of completed items to show for one reviewer in the reviewer list view, the list is also filtered by the days to show in reviews list setting.")
56
+
days_to_show_in_reviewer_list=models.IntegerField(null=True, blank=True, help_text="Maximum number of days to show in reviewer list for completed items.")
0 commit comments