mirror of
https://github.com/bitwarden/server.git
synced 2025-04-11 16:18:14 -05:00

* PM-3833 - API - AccountsController.cs && AccountsController.cs - remove prelogin and register endpoints. * PM-3833 - Move Request and Response models that were used for Prelogin and PostRegister from API to Identity. * PM-3833 - FIX LINT * PM-3833 - Fix issues after merge conflict fixes. * PM-3833 - Another test fix
6 lines
155 B
C#
6 lines
155 B
C#
namespace Bit.Identity.Models.Response.Accounts;
|
|
public interface ICaptchaProtectedResponseModel
|
|
{
|
|
public string CaptchaBypassToken { get; set; }
|
|
}
|