OpenAuth.Net/OpenAuth.Mvc/Controllers/ErrorController.cs
yubaolee c7acca904a 更新域名
fix issue #I3ZCIX 可以控制流程审批过程中表单项是否可写
2021-07-22 19:33:55 +08:00

41 lines
1.1 KiB
C#

// ***********************************************************************
// 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;
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();
}
}
}