Skip to content

Commit

Permalink
HAWKULAR-59 - Added invitation REST resource.
Browse files Browse the repository at this point in the history
  • Loading branch information
jpkrohling committed Oct 2, 2015
1 parent 281ccd4 commit 009ccfe
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/rest/hawkRest-accounts-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ module hawkularRest {
factory.OrganizationMembership = $resource(
prefix + '/hawkular/accounts/organizationMemberships/:organizationId', {organizationId:'@organizationId'}
);
factory.OrganizationInvitation = $resource(
prefix + '/hawkular/accounts/invitations/:id', null, {
'update': {method: 'PUT'}
}
);

return factory;
}];
Expand Down

0 comments on commit 009ccfe

Please sign in to comment.