OpenAuth.Net/OpenAuth.Mvc/Controllers/ErrorController.cs

41 lines
1.1 KiB
C#
Raw Normal View History

// ***********************************************************************
// Assembly : OpenAuth.Mvc
// Author : 李玉宝
// Created : 07-24-2018
//
// Last Modified By : 李玉宝
// Last Modified On : 07-24-2018
// ***********************************************************************
// <copyright file="ErrorController.cs" company="OpenAuth.Mvc">
// Copyright (c) http://www.openauth.net.cn. All rights reserved.
// </copyright>
// <summary>
// 异常处理页面
//</summary>
// ***********************************************************************
using Infrastructure;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
2015-12-02 10:06:30 +08:00
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();
2015-12-02 10:06:30 +08:00
}
}
}