Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
scottAtTai committed Mar 19, 2023
1 parent 7fb1038 commit 6e1a732
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions EQToolApis/Pages/AuthIndex.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@page
@model EQToolApis.Pages.AuthIndexModel
<h2>Auth page</h2>
13 changes: 13 additions & 0 deletions EQToolApis/Pages/AuthIndex.cshtml.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;

namespace EQToolApis.Pages
{
[Authorize]
public class AuthIndexModel : PageModel
{
public void OnGet()
{
}
}
}

0 comments on commit 6e1a732

Please sign in to comment.