Skip to content

Commit

Permalink
Merge pull request #89 from jpkrohling/JPK-ChangesForSecretStore1.0.1…
Browse files Browse the repository at this point in the history
…3.Final

Adapted Tokens service to Secret Store 1.0.13.Final
  • Loading branch information
jpkrohling committed Feb 10, 2016
2 parents a43e36b + 6f96a47 commit 609cf73
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 609cf73

Please sign in to comment.