Update IUserService.cs

This commit is contained in:
Alain
2015-01-06 12:14:13 +00:00
parent a378d0c202
commit 91b599b213

View File

@@ -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>