1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00

org events page setup

This commit is contained in:
Kyle Spearrin
2017-12-14 15:03:46 -05:00
parent 4ecf307285
commit 90c079e743
8 changed files with 251 additions and 1 deletions

View File

@@ -179,6 +179,11 @@
getPublicKey: { url: _apiUri + '/users/:id/public-key', method: 'GET', params: { id: '@id' } }
});
_service.events = $resource(_apiUri + '/events', {}, {
list: { method: 'GET', params: {} },
listOrganization: { url: _apiUri + '/organizations/:orgId/events', method: 'GET', params: { id: '@orgId' } }
});
_service.identity = $resource(_identityUri + '/connect', {}, {
token: {
url: _identityUri + '/connect/token',