mirror of
https://github.com/bitwarden/server
synced 2025-12-23 19:53:40 +00:00
passwordless signin for billing portal
This commit is contained in:
15
src/Billing/Controllers/HomeController.cs
Normal file
15
src/Billing/Controllers/HomeController.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Billing.Controllers
|
||||
{
|
||||
public class HomeController : Controller
|
||||
{
|
||||
[Authorize]
|
||||
public IActionResult Index()
|
||||
{
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user