mirror of https://github.com/abpframework/abp.git
5 changed files with 23 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||
using System.Threading.Tasks; |
|||
using Microsoft.Extensions.DependencyInjection; |
|||
using Volo.Abp.SimpleStateChecking; |
|||
using Volo.Abp.Users; |
|||
|
|||
namespace Volo.Abp.Authorization.Permissions |
|||
{ |
|||
public class RequireAuthenticatedSimpleStateChecker<TState> : ISimpleStateChecker<TState> |
|||
where TState : IHasSimpleStateCheckers<TState> |
|||
{ |
|||
public Task<bool> IsEnabledAsync(SimpleStateCheckerContext<TState> context) |
|||
{ |
|||
return Task.FromResult(context.ServiceProvider.GetRequiredService<ICurrentUser>().IsAuthenticated); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue