Handled rejected email rollback cases

This commit is contained in:
rajesh
2026-03-13 20:26:04 +05:30
parent 12e6d8af9a
commit e3b4b04b80
4 changed files with 152 additions and 5 deletions

View File

@@ -6,7 +6,9 @@ public enum ApplicationAmendmentRequestEnum {
AWAITING("AWAITING"),
RESPONSE_RECEIVED("RESPONSE_RECEIVED"),
CLOSE("CLOSE"),
EXPIRED("EXPIRED");
EXPIRED("EXPIRED"),
/** Amendment PEC email was rejected; only instructor can update until status is set back to AWAITING. */
DRAFT("DRAFT");
private String value;