We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a44c30b commit 3fb6e14Copy full SHA for 3fb6e14
1 file changed
MangoAPI.BusinessLogic/ApiCommands/Users/RegisterRequest.cs
@@ -9,13 +9,11 @@ public record RegisterRequest
9
public RegisterRequest(
10
string email,
11
string displayName,
12
- string password,
13
- bool termsAccepted)
+ string password)
14
{
15
Email = email;
16
DisplayName = displayName;
17
Password = password;
18
- TermsAccepted = termsAccepted;
19
}
20
21
[DefaultValue("test@gmail.com")]
@@ -26,7 +24,4 @@ public RegisterRequest(
26
24
27
25
[DefaultValue("x[?6dME#xrp=nr7q")]
28
public string Password { get; }
29
-
30
- [DefaultValue(true)]
31
- public bool TermsAccepted { get; }
32
0 commit comments