Skip to content

Commit

Permalink
Adapted Tokens service to Secret Store 1.0.13.Final
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrohling committed Feb 9, 2016
1 parent a43e36b commit 6f96a47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rest/hawkRest-accounts-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module hawkularRest {
factory.Persona = $resource(prefix + '/hawkular/accounts/personas/:id', {id:'@id'});
factory.Role = $resource(prefix + '/hawkular/accounts/roles/:id', {id:'@id'});
factory.Permission = $resource(prefix + '/hawkular/accounts/permissions/:id', {id:'@id'});
factory.Token = $resource(prefix + '/secret-store/v1/tokens/:id', {id:'@id'}, {
factory.Token = $resource(prefix + '/secret-store/v1/tokens/:key', {key:'@key'}, {
'update': {method: 'PUT'}
}
);
Expand Down

0 comments on commit 6f96a47

Please sign in to comment.