Convert remaining admin routes to Razor Pages
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m40s
TaxBaik CI/CD / build-and-deploy (push) Failing after 2m40s
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
@page
|
||||
@model TaxBaik.Web.Pages.Admin.Settings.IndexModel
|
||||
@{ ViewData["Title"] = "설정"; }
|
||||
<section class="container py-5"><h1 class="h2 fw-bold">설정</h1></section>
|
||||
@@ -0,0 +1,7 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
using TaxBaik.Web.Services;
|
||||
namespace TaxBaik.Web.Pages.Admin.Settings;
|
||||
[Authorize(AuthenticationSchemes = AdminAuthDefaults.Scheme)]
|
||||
public class IndexModel : PageModel { }
|
||||
|
||||
Reference in New Issue
Block a user