mirror of
https://github.com/bitwarden/server.git
synced 2026-02-15 05:13:30 +08:00
16 lines
287 B
C#
16 lines
287 B
C#
using System;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Billing.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
[Authorize]
|
|
public IActionResult Index()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|