Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/9.0' into 9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
himeshr committed Jun 3, 2024
2 parents ed82fd7 + bae3d0f commit 9fb6e9d
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ public class OrganisationService {
private final OrganisationConfigService organisationConfigService;
private final GenderRepository genderRepository;
private final OrganisationRepository organisationRepository;
private final UserSubjectRepository userSubjectRepository;
private final Logger logger;

@Autowired
Expand Down Expand Up @@ -213,7 +214,8 @@ public OrganisationService(FormRepository formRepository,
MessageReceiverRepository messageReceiverRepository,
OrganisationConfigService organisationConfigService,
GenderRepository genderRepository,
OrganisationRepository organisationRepository) {
OrganisationRepository organisationRepository,
UserSubjectRepository userSubjectRepository) {
this.formRepository = formRepository;
this.addressLevelTypeRepository = addressLevelTypeRepository;
this.locationRepository = locationRepository;
Expand Down Expand Up @@ -289,6 +291,7 @@ public OrganisationService(FormRepository formRepository,
this.organisationConfigService = organisationConfigService;
this.genderRepository = genderRepository;
this.organisationRepository = organisationRepository;
this.userSubjectRepository = userSubjectRepository;
logger = LoggerFactory.getLogger(this.getClass());
}

Expand Down Expand Up @@ -673,6 +676,7 @@ public void deleteTransactionalData() {
userSubjectAssignmentRepository,
subjectProgramEligibilityRepository,
taskRepository,
userSubjectRepository,
individualRepository
};

Expand Down

0 comments on commit 9fb6e9d

Please sign in to comment.