Update IUserService.cs
This commit is contained in:
@@ -54,12 +54,13 @@ namespace Umbraco.Core.Services
|
||||
void DeleteSectionFromAllUsers(string sectionAlias);
|
||||
|
||||
/// <summary>
|
||||
/// Add a specific section to all users
|
||||
/// Add a specific section to all users or those specified as parameters
|
||||
/// </summary>
|
||||
/// <remarks>This is useful when a new section is created to allow all users accessing it</remarks>
|
||||
/// <remarks>This is useful when a new section is created to allow specific users accessing it</remarks>
|
||||
/// <param name="sectionAlias">Alias of the section to add</param>
|
||||
void AddSectionToAllUsers(string sectionAlias);
|
||||
|
||||
/// <param name="userIds">Specifiying nothing will add the section to all user</param>
|
||||
void AddSectionToAllUsers(string sectionAlias, params int[] userIds);
|
||||
|
||||
/// <summary>
|
||||
/// Get permissions set for a user and optional node ids
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user