From 732e0d8984d562d3f417e665ba2a23254e3b477c Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 10 Mar 2017 21:04:22 -0500 Subject: [PATCH] remove old actions --- src/Api/Controllers/SubvaultsController.cs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/Api/Controllers/SubvaultsController.cs b/src/Api/Controllers/SubvaultsController.cs index 98d56c20a8..c1dc9e2f07 100644 --- a/src/Api/Controllers/SubvaultsController.cs +++ b/src/Api/Controllers/SubvaultsController.cs @@ -79,20 +79,6 @@ namespace Bit.Api.Controllers return new SubvaultResponseModel(subvault); } - [HttpPut("user")] - [HttpPost("user")] - public async Task PutUserSubvaults(string orgId, [FromBody]OrganizationUserConfirmRequestModel model) - { - - } - - [HttpPut("{id}/users")] - [HttpPost("{id}/users")] - public async Task PutUsers(string orgId, string id, [FromBody]SubvaultRequestModel model) - { - - } - [HttpDelete("{id}")] [HttpPost("{id}/delete")] public async Task Delete(string orgId, string id)