Skip to content

Commit

Permalink
Merge pull request #284 from bcgov/fix/edx-1958
Browse files Browse the repository at this point in the history
fix: offshore schools do require an initial admin
  • Loading branch information
SodhiA1 authored Nov 9, 2023
2 parents 29af6c1 + e091a7c commit 42b72aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
public class CreateSchoolSagaPayloadValidator {
public List<FieldError> validateCreateSchoolSagaPayload(CreateSchoolSagaData sagaData) {
List<FieldError> apiValidationErrors = new ArrayList<>();
List<String> categoriesRequiringAdmin = List.of("INDEPEND", "INDP_FNS");
List<String> categoriesRequiringAdmin = List.of("INDEPEND", "INDP_FNS", "OFFSHORE");

School school = sagaData.getSchool();
EdxUser user = sagaData.getInitialEdxUser();
Expand Down

0 comments on commit 42b72aa

Please sign in to comment.