Skip to content

Commit

Permalink
fix(patients/groups): fix broken PatientGroup href
Browse files Browse the repository at this point in the history
This commit fixes the PatientGroup href that pointed to the old
`patient_groups/` URL.
  • Loading branch information
jniles committed May 16, 2016
1 parent 0c60285 commit fe1e658
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/js/services/PatientGroupService.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ PatientGroupService.$inject = ['$http', 'util'];
*/
function PatientGroupService($http, util) {
var service = this;
var baseUrl = '/patient_groups/';
var baseUrl = '/patients/groups/';

service.read = read;
service.create = create;
Expand Down
2 changes: 1 addition & 1 deletion server/test/api/patientDocuments.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ describe('(patients/:uuid/documents) Patient Documents', () => {
.catch(helpers.api.handler);
});

// @fixme- investigate weird behavior with express-session.
// @fixme - investigate weird behavior with express-session.
it.skip('POST /patients/:uuid/documents without a document should throw an error', () => {
return agent
.post(`/patients/${patientUuid}/documents`)
Expand Down

0 comments on commit fe1e658

Please sign in to comment.