Created
February 18, 2015 16:29
-
-
Save TryingToImprove/af7cf512f03a49cdd28e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Notify listeners that the authentication is started | |
PatientActions.fetchContactInformationsStarted(patientId); | |
// Call the API | |
ContactInformationService.patient.findAll(patientId) | |
.then(cb(PatientActions.fetchContactInformationsSuccess, patientId), | |
cb(PatientActions.fetchContactInformationsFailed, patientId)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment