Skip to content

Commit

Permalink
fix(api): Fix registration page
Browse files Browse the repository at this point in the history
  • Loading branch information
VMelnalksnis committed Oct 16, 2022
1 parent 5fb186f commit 2ed910f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ public Register(
_userUnitOfWork = userUnitOfWork;
}

/// <summary>Gets the data needed to register a user.</summary>
/// <summary>Gets or sets the data needed to register a user.</summary>
[BindProperty]
public InputModel Input { get; } = new();
public InputModel Input { get; set; } = null!;

/// <summary>Gets the return url parameter.</summary>
public string? ReturnUrl { get; private set; }
Expand Down

0 comments on commit 2ed910f

Please sign in to comment.