From 893c4fbf6c6006f540fe2b21d525f8064f7a0f8b Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Mon, 19 Sep 2022 17:15:53 +0200 Subject: [PATCH] Update deprecation message for register and prelogin (#2288) --- src/Api/Controllers/AccountsController.cs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Api/Controllers/AccountsController.cs b/src/Api/Controllers/AccountsController.cs index f80afc8f33..5f40cd96a1 100644 --- a/src/Api/Controllers/AccountsController.cs +++ b/src/Api/Controllers/AccountsController.cs @@ -67,8 +67,7 @@ public class AccountsController : Controller #region DEPRECATED (Moved to Identity Service) - // This method is still used by self hosted intalls - [Obsolete("2022-01-12 Moved to Identity, left for backwards compatability with older clients.")] + [Obsolete("TDL-136 Moved to Identity (2022-01-12 cloud, 2022-09-19 self-hosted), left for backwards compatability with older clients.")] [HttpPost("prelogin")] [AllowAnonymous] public async Task PostPrelogin([FromBody] PreloginRequestModel model) @@ -85,8 +84,7 @@ public class AccountsController : Controller return new PreloginResponseModel(kdfInformation); } - // This method is still used by self hosted intalls - [Obsolete("2022-01-12 Moved to Identity, left for backwards compatability with older clients.")] + [Obsolete("TDL-136 Moved to Identity (2022-01-12 cloud, 2022-09-19 self-hosted), left for backwards compatability with older clients.")] [HttpPost("register")] [AllowAnonymous] [CaptchaProtected]