Skip to content

Commit

Permalink
Add build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
mtho11 committed Jan 25, 2016
1 parent 717c358 commit 3c76662
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion dist/hawkular-ui-service.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ var 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/:id', { id: '@id' }, {
'update': { method: 'PUT' }
});
factory.OrganizationJoinRequest = $resource(prefix + '/hawkular/accounts/organizationJoinRequests/:organizationId', { organizationId: '@organizationId' }, {
'update': { method: 'PUT' }
});
Expand Down

0 comments on commit 3c76662

Please sign in to comment.