mirror of https://github.com/abpframework/abp.git
3 changed files with 21 additions and 1 deletions
@ -1,8 +1,12 @@ |
|||
using System.Threading.Tasks; |
|||
using System; |
|||
using System.Threading.Tasks; |
|||
|
|||
namespace Volo.Abp.SettingManagement.Web.Pages.SettingManagement; |
|||
|
|||
public interface ISettingPageContributor |
|||
{ |
|||
Task ConfigureAsync(SettingPageCreationContext context); |
|||
|
|||
[Obsolete("Use SettingPageContributorBase as base class and call `RequiredPermissions` or `RequiredFeatures` for better performance.")] |
|||
Task<bool> CheckPermissionsAsync(SettingPageCreationContext context); |
|||
} |
|||
|
|||
Loading…
Reference in new issue