Skip to content

Commit

Permalink
feat(#119): 특례입학 템플릿 추가
Browse files Browse the repository at this point in the history
- 특례입학 템플릿을 추가했어요.
  • Loading branch information
jyj1289 committed Sep 8, 2024
1 parent b224d2f commit 4bd2de3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,15 @@ private List<String> getRequiredTemplates(Form form) {
Templates.DOCUMENT,
Templates.WRITTEN_OATH
);
} else if (form.getType().isSpecialAdmission()) {
return List.of(
Templates.FORM,
Templates.GRADE_TABLE,
Templates.DOCUMENT,
Templates.WRITTEN_OATH,
Templates.SPECIAL_ADMISSION,
Templates.CONFIRMATION
);
}

return List.of(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ public class Templates {
public static final String PROOF_OF_APPLICATION = "proof-of-application";
public static final String GRADE_TABLE = "grade-table";
public static final String WRITTEN_OATH = "written-oath";
public static final String SPECIAL_ADMISSION = "special-admission";
public static final String CONFIRMATION = "confirmation";
}

0 comments on commit 4bd2de3

Please sign in to comment.