diff --git a/beat/web/accounts/models.py b/beat/web/accounts/models.py index d8821bec4f6aa1fce09c4eff3bbb53eb0f599748..9bb5ce5b900af5ed16a986c4dd7c1015687dadf0 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 __________