Merge pull request #511 from sartography/review-type-updates-692

Review type updates #692
This commit is contained in:
Mike Cullerton 2022-03-30 10:49:25 -04:00 committed by GitHub
commit 0b4caae19f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -37,10 +37,10 @@ class StudyService(object):
"""Provides common tools for working with a Study"""
INVESTIGATOR_LIST = "investigators.xlsx" # A reference document containing details about what investigators to show, and when.
# The review types 2, 3, 23, 24 correspond to review type names
# `Full Committee`, `Expedited`, `Non-UVA IRB Full Board`, and `Non-UVA IRB Expedited`
# The review types 2, 3, 21 correspond to review type names
# `Full Committee`, `Expedited`, and `Review by Non-UVA IRB`
# These are considered to be the valid review types that can be shown to users.
VALID_REVIEW_TYPES = [2, 3, 23, 24]
VALID_REVIEW_TYPES = [2, 3, 21]
PB_MIN_DATE = parser.parse(app.config['PB_MIN_DATE'])
def get_studies_for_user(self, user, categories, include_invalid=False):

View File

@ -25,6 +25,6 @@
"DATELASTMODIFIED": "2020-02-19T14:24:55.101695",
"STUDYID": 1,
"TITLE": "Efficacy of xenomorph bio-augmented circuits on dexterity of cybernetic prostheses",
"REVIEW_TYPE": 23
"REVIEW_TYPE": 21
}
]