2020-03-30 10:12:52 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using FAuth.Models;
|
|
|
|
|
|
|
|
|
|
namespace FAuth.Controllers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Home控制器
|
|
|
|
|
/// </summary>
|
2020-03-30 16:10:51 +08:00
|
|
|
|
public class HomeController:ControllerBase<HomeController>
|
2020-03-30 10:12:52 +08:00
|
|
|
|
{
|
2020-03-30 16:10:51 +08:00
|
|
|
|
public HomeController(ILogger<HomeController> logger,IServiceProvider service) : base(logger,service) {
|
2020-03-30 10:12:52 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Index() {
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IActionResult Privacy() {
|
|
|
|
|
return View();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[ResponseCache(Duration = 0,Location = ResponseCacheLocation.None,NoStore = true)]
|
|
|
|
|
public IActionResult Error() {
|
|
|
|
|
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|