mirror of
https://github.com/bitwarden/server.git
synced 2026-01-31 14:13:18 +08: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
15 lines
368 B
C#
15 lines
368 B
C#
using Bit.Core.Models.Api;
|
|
|
|
namespace Bit.Identity.Models.Response.Accounts;
|
|
|
|
public class RegisterResponseModel : ResponseModel, ICaptchaProtectedResponseModel
|
|
{
|
|
public RegisterResponseModel(string captchaBypassToken)
|
|
: base("register")
|
|
{
|
|
CaptchaBypassToken = captchaBypassToken;
|
|
}
|
|
|
|
public string CaptchaBypassToken { get; set; }
|
|
}
|