1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

domain rules page setup with new APIs

This commit is contained in:
Kyle Spearrin
2017-01-09 22:26:20 -05:00
parent 74945e03ce
commit 605bdd0ea0
8 changed files with 201 additions and 0 deletions

View File

@@ -36,6 +36,8 @@
putPassword: { url: _apiUri + '/accounts/password', method: 'POST', params: {} },
getProfile: { url: _apiUri + '/accounts/profile', method: 'GET', params: {} },
putProfile: { url: _apiUri + '/accounts/profile', method: 'POST', params: {} },
getDomains: { url: _apiUri + '/accounts/domains', method: 'GET', params: {} },
putDomains: { url: _apiUri + '/accounts/domains', method: 'POST', params: {} },
getTwoFactor: { url: _apiUri + '/accounts/two-factor', method: 'GET', params: {} },
putTwoFactor: { url: _apiUri + '/accounts/two-factor', method: 'POST', params: {} },
postTwoFactorRecover: { url: _apiUri + '/accounts/two-factor-recover', method: 'POST', params: {} },