From 64b768178dc9e64293a52c1b6d2631709af9502a Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 24 Feb 2019 13:38:47 +0200 Subject: Removed all refresh tokens use :/ --- .../Controllers/MachineStudioController.cs | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs') diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs index 324878f25..29cc067d6 100644 --- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs +++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs @@ -366,27 +366,6 @@ namespace Tango.MachineService.Controllers }; } - [HttpPost] - [JwtTokenFilter(allowExpired: true)] - public RenewTokenResponse Renew(RenewTokenRequest request) - { - RefreshTokensManager manager = new RefreshTokensManager(); - var entity = manager.GetToken(request.RefreshToken); - - if (entity.AccessToken != RequestToken.AccessToken) - { - throw new AuthenticationException("Invalid access token and refresh token combination."); - } - - var newToken = RequestToken.Renew(MachineServiceConfig.JWT_TOKEN_SECRET, entity.AccessToken); - - return new RenewTokenResponse() - { - AccessToken = entity.AccessToken, - RefreshToken = entity.RefreshToken, - }; - } - #endregion } } -- cgit v1.3.1