Add Razor admin dashboard shell
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m18s

This commit is contained in:
2026-07-09 11:10:00 +09:00
parent 0545964468
commit 83c0c70adc
4 changed files with 101 additions and 0 deletions
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc.RazorPages;
using TaxBaik.Web.Services;
namespace TaxBaik.Web.Pages.Admin;
[Authorize(AuthenticationSchemes = AdminAuthDefaults.Scheme)]
public class IndexModel : PageModel
{
public void OnGet()
{
}
}