From b68c841e56294d7310be2aced18ce6ff326a3ad6 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Mon, 12 Apr 2021 09:44:45 -0500 Subject: [PATCH] Move renew endpoint to fix overlapping endpoint issue (#1266) --- src/Api/Controllers/CiphersController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Api/Controllers/CiphersController.cs b/src/Api/Controllers/CiphersController.cs index 669bcd0203..22b6ce0e93 100644 --- a/src/Api/Controllers/CiphersController.cs +++ b/src/Api/Controllers/CiphersController.cs @@ -601,7 +601,7 @@ namespace Bit.Api.Controllers }; } - [HttpGet("{id}/attachment/{attachmentId}")] + [HttpGet("{id}/attachment/{attachmentId}/renew")] public async Task RenewFileUploadUrl(string id, string attachmentId) { var userId = _userService.GetProperUserId(User).Value;