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

12 lines
271 B
C#

namespace ASC.Web.Core.Security
{
public class SecurityPassthroughAttribute : SecurityAttribute
{
public override bool CheckAuthorization(HttpContext context)
{
//Always authorized
return true;
}
}
}