Skip to content

Commit

Permalink
HAWKULAR-454 - Updated Account's path
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrohling committed Sep 8, 2015
1 parent 15260dc commit f98ae7d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions dist/hawkular-ui-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ var hawkularRest;
this.setPort(this.port || $location.port() || 8080);
var prefix = this.protocol + '://' + this.host + ':' + this.port;
var factory = {};
factory.Organization = $resource(prefix + '/hawkular-accounts/organizations/:id', { id: '@id' });
factory.Persona = $resource(prefix + '/hawkular-accounts/personas/:id', { id: '@id' });
factory.Organization = $resource(prefix + '/hawkular/accounts/organizations/:id', { id: '@id' });
factory.Persona = $resource(prefix + '/hawkular/accounts/personas/:id', { id: '@id' });
return factory;
}];
});
Expand Down
4 changes: 2 additions & 2 deletions dist/hawkular-ui-service.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ var hawkularRest;
this.setPort(this.port || $location.port() || 8080);
var prefix = this.protocol + '://' + this.host + ':' + this.port;
var factory = {};
factory.Organization = $resource(prefix + '/hawkular-accounts/organizations/:id', { id: '@id' });
factory.Persona = $resource(prefix + '/hawkular-accounts/personas/:id', { id: '@id' });
factory.Organization = $resource(prefix + '/hawkular/accounts/organizations/:id', { id: '@id' });
factory.Persona = $resource(prefix + '/hawkular/accounts/personas/:id', { id: '@id' });
return factory;
}];
});
Expand Down
4 changes: 2 additions & 2 deletions src/rest/hawkRest-accounts-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ module hawkularRest {
var prefix = this.protocol + '://' + this.host + ':' + this.port;
var factory: any = {};

factory.Organization = $resource(prefix + '/hawkular-accounts/organizations/:id', {id:'@id'});
factory.Persona = $resource(prefix + '/hawkular-accounts/personas/:id', {id:'@id'});
factory.Organization = $resource(prefix + '/hawkular/accounts/organizations/:id', {id:'@id'});
factory.Persona = $resource(prefix + '/hawkular/accounts/personas/:id', {id:'@id'});

return factory;
}];
Expand Down

0 comments on commit f98ae7d

Please sign in to comment.