From 110568d35ce91729e4e0827cdbc4f3d7c681e03c Mon Sep 17 00:00:00 2001 From: Flavio Tarsetti <flavio.tarsetti@idiap.ch> Date: Wed, 13 May 2020 23:00:37 +0200 Subject: [PATCH] [accounts][models] create rejection status --- beat/web/accounts/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/beat/web/accounts/models.py b/beat/web/accounts/models.py index d8821bec4..9bb5ce5b9 100644 --- a/beat/web/accounts/models.py +++ b/beat/web/accounts/models.py @@ -181,10 +181,12 @@ class TemporaryUrl(models.Model): # Self yearly revalidation from supervisee VALIDATION = "V" YEARREVALIDATION = "Y" + REJECTION = "R" URL_STATUS = ( (VALIDATION, "Supervisor validates supervisee"), (YEARREVALIDATION, "Self yearly revalidation from supervisee"), + (REJECTION, "Supervisor rejects supervisee revalidation"), ) # _____ Fields __________ -- GitLab