mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
14 lines
443 B
C#
14 lines
443 B
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Aaru.Server.Areas.Identity.Pages.Account
|
|
{
|
|
[AllowAnonymous]
|
|
public sealed class RegisterModel : PageModel
|
|
{
|
|
public IActionResult OnGetAsync(string returnUrl = null) => RedirectToPage("Login");
|
|
|
|
public IActionResult OnPostAsync(string returnUrl = null) => RedirectToPage("Login");
|
|
}
|
|
} |