DocSpace-buildtools/web/ASC.Web.Core/Security/SecurityPassthroughAttribute.cs

12 lines
271 B
C#
Raw Normal View History

2019-06-07 08:59:07 +00:00
namespace ASC.Web.Core.Security
{
public class SecurityPassthroughAttribute : SecurityAttribute
{
public override bool CheckAuthorization(HttpContext context)
{
//Always authorized
return true;
}
}
}