// *********************************************************************** // Assembly : OpenAuth.Mvc // Author : 李玉宝 // Created : 07-24-2018 // // Last Modified By : 李玉宝 // Last Modified On : 07-24-2018 // *********************************************************************** // // Copyright (c) http://www.openauth.net.cn. All rights reserved. // // // 异常处理页面 // // *********************************************************************** using Infrastructure; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; namespace OpenAuth.Mvc.Controllers { public class ErrorController : Controller { [AllowAnonymous] public string Demo() { return JsonHelper.Instance.Serialize(new Response { Code = 500, Message = "演示版本,不要乱动" }); } [AllowAnonymous] public ActionResult Auth() { return View(); } } }