Interface IServerEventUserManager
Manages group access for a user.
Namespace: Umbraco.Cms.Core.ServerEvents
Assembly: Umbraco.Core.dll
Syntax
public interface IServerEventUserManager
Methods
View SourceAssignToGroupsAsync(ClaimsPrincipal, String)
Adds the connections to the groups that the user has access to.
Declaration
Task AssignToGroupsAsync(ClaimsPrincipal user, string connectionId)
Parameters
Type | Name | Description |
---|---|---|
System. |
user | The owner of the connection. |
System. |
connectionId | The connection to add to groups. |
Returns
Type | Description |
---|---|
Task |
RefreshGroupsAsync(ClaimsPrincipal)
Reauthorize the user and removes all connections held by the user from groups they are no longer allowed to access.
Declaration
Task RefreshGroupsAsync(ClaimsPrincipal user)
Parameters
Type | Name | Description |
---|---|---|
System. |
user | The user to reauthorize. |
Returns
Type | Description |
---|---|
Task |