Sergey Karmanov e269c8dce5
All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 29s
Небольшие багфиксы
2023-07-30 13:11:11 +03:00

29 lines
680 B
C#

using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using PaydayFrontend.Models;
namespace PaydayFrontend.Controllers;
public class AdminController : Controller
{
public async Task<IActionResult> Index()
{
return View();
}
public async Task<IActionResult> Universities()
{
return View();
}
public async Task<IActionResult> Banks()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
}