mirror of https://github.com/abpframework/abp.git
7 changed files with 24 additions and 10 deletions
@ -0,0 +1,12 @@ |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Volo.Abp.Authorization |
|||
{ |
|||
public class AlwaysAllowMethodInvocationAuthorizationService : IMethodInvocationAuthorizationService |
|||
{ |
|||
public Task CheckAsync(MethodInvocationAuthorizationContext context) |
|||
{ |
|||
return Task.CompletedTask; |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue