diff --git a/src/Api/Controllers/AccountsController.cs b/src/Api/Controllers/AccountsController.cs index 9bb1e791ce..e77886d695 100644 --- a/src/Api/Controllers/AccountsController.cs +++ b/src/Api/Controllers/AccountsController.cs @@ -74,6 +74,7 @@ namespace Bit.Api.Controllers } [HttpPut("email")] + [HttpPost("email")] public async Task PutEmail([FromBody]EmailRequestModel model) { // NOTE: It is assumed that the eventual repository call will make sure the updated @@ -103,6 +104,7 @@ namespace Bit.Api.Controllers } [HttpPut("password")] + [HttpPost("password")] public async Task PutPassword([FromBody]PasswordRequestModel model) { // NOTE: It is assumed that the eventual repository call will make sure the updated @@ -130,6 +132,7 @@ namespace Bit.Api.Controllers } [HttpPut("security-stamp")] + [HttpPost("security-stamp")] public async Task PutSecurityStamp([FromBody]SecurityStampRequestModel model) { var result = await _userService.RefreshSecurityStampAsync(_currentContext.User, model.MasterPasswordHash); @@ -155,6 +158,7 @@ namespace Bit.Api.Controllers } [HttpPut("profile")] + [HttpPost("profile")] public async Task PutProfile([FromBody]UpdateProfileRequestModel model) { await _userService.SaveUserAsync(model.ToUser(_currentContext.User)); @@ -180,6 +184,7 @@ namespace Bit.Api.Controllers } [HttpPut("two-factor")] + [HttpPost("two-factor")] public async Task PutTwoFactor([FromBody]UpdateTwoFactorRequestModel model) { var user = _currentContext.User; diff --git a/src/Api/Controllers/CiphersController.cs b/src/Api/Controllers/CiphersController.cs index a38eb77851..de71f4605d 100644 --- a/src/Api/Controllers/CiphersController.cs +++ b/src/Api/Controllers/CiphersController.cs @@ -71,6 +71,7 @@ namespace Bit.Api.Controllers } [HttpPut("{id}/favorite")] + [HttpPost("{id}/favorite")] public async Task Favorite(string id) { var cipher = await _cipherRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); @@ -85,6 +86,7 @@ namespace Bit.Api.Controllers } [HttpDelete("{id}")] + [HttpPost("{id}/delete")] public async Task Delete(string id) { var cipher = await _cipherRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); diff --git a/src/Api/Controllers/DevicesController.cs b/src/Api/Controllers/DevicesController.cs index 0b22a2991f..07ed4fce1a 100644 --- a/src/Api/Controllers/DevicesController.cs +++ b/src/Api/Controllers/DevicesController.cs @@ -72,6 +72,7 @@ namespace Bit.Api.Controllers } [HttpPut("{id}")] + [HttpPost("{id}")] public async Task Put(string id, [FromBody]DeviceRequestModel model) { var device = await _deviceRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); @@ -87,6 +88,7 @@ namespace Bit.Api.Controllers } [HttpPut("identifier/{identifier}/token")] + [HttpPost("identifier/{identifier}/token")] public async Task PutToken(string identifier, [FromBody]DeviceTokenRequestModel model) { var device = await _deviceRepository.GetByIdentifierAsync(identifier, new Guid(_userManager.GetUserId(User))); @@ -102,6 +104,7 @@ namespace Bit.Api.Controllers } [HttpDelete("{id}")] + [HttpPost("{id}/delete")] public async Task Delete(string id) { var device = await _deviceRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); diff --git a/src/Api/Controllers/FoldersController.cs b/src/Api/Controllers/FoldersController.cs index fceae81cb7..33cf04c4f0 100644 --- a/src/Api/Controllers/FoldersController.cs +++ b/src/Api/Controllers/FoldersController.cs @@ -60,6 +60,7 @@ namespace Bit.Api.Controllers } [HttpPut("{id}")] + [HttpPost("{id}")] public async Task Put(string id, [FromBody]FolderRequestModel model) { var folder = await _cipherRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); @@ -73,6 +74,7 @@ namespace Bit.Api.Controllers } [HttpDelete("{id}")] + [HttpPost("{id}/delete")] public async Task Delete(string id) { var folder = await _cipherRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); diff --git a/src/Api/Controllers/SitesController.cs b/src/Api/Controllers/SitesController.cs index 75debbbf29..b3ce6cc668 100644 --- a/src/Api/Controllers/SitesController.cs +++ b/src/Api/Controllers/SitesController.cs @@ -66,6 +66,7 @@ namespace Bit.Api.Controllers } [HttpPut("{id}")] + [HttpPost("{id}")] public async Task Put(string id, [FromBody]SiteRequestModel model, string[] expand = null) { var site = await _cipherRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User))); @@ -82,6 +83,7 @@ namespace Bit.Api.Controllers } [HttpDelete("{id}")] + [HttpPost("{id}/delete")] public async Task Delete(string id) { var site = await _cipherRepository.GetByIdAsync(new Guid(id), new Guid(_userManager.GetUserId(User)));