Skip to content

Commit

Permalink
fix: register facility patients
Browse files Browse the repository at this point in the history
Signed-off-by: maxwellgithinji <maxwellgithinji@gmail.com>
  • Loading branch information
maxwellgithinji committed May 16, 2023
1 parent 96ae222 commit 8b166d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/mycarehub/usecases/healthdiary/healthdiary.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func (h UseCasesHealthDiaryImpl) GetFacilityHealthDiaryEntries(ctx context.Conte
}

response := dto.HealthDiaryEntriesResponse{
MFLCode: 1234, //TODO
MFLCode: input.MFLCode,
HealthDiaryEntries: []*domain.ClientHealthDiaryEntry{},
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/mycarehub/usecases/user/user.go
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ func (us *UseCasesUserImpl) RegisteredFacilityPatients(ctx context.Context, inpu
}

output := dto.PatientSyncResponse{
MFLCode: 1234,
MFLCode: input.MFLCode,
Patients: []string{},
}

Expand Down

0 comments on commit 8b166d1

Please sign in to comment.