Added missing method from IHost interface.
This commit is contained in:
parent
6b9dd4150b
commit
c639774f73
2 changed files with 23 additions and 0 deletions
|
@ -403,6 +403,15 @@ namespace ScrewTurn.Wiki.PluginFramework {
|
|||
/// <exception cref="ArgumentNullException">If <paramref name="administrators"/> or <paramref name="users"/> are <c>null</c>.</exception>
|
||||
bool UpgradeSecurityFlagsToGroupsAcl(UserGroup administrators, UserGroup users);
|
||||
|
||||
/// <summary>
|
||||
/// Overrides the public directory.
|
||||
/// </summary>
|
||||
/// <param name="fullPath">The new full path of the public directory.</param>
|
||||
/// <exception cref="ArgumentNullException">If <paramref name="fullPath"/> is <c>null</c>.</exception>
|
||||
/// <exception cref="ArgumentException">If <paramref name="fullPath"/> is empty.</exception>
|
||||
/// <exception cref="InvalidOperationException">If it's too late to override the public directory.</exception>
|
||||
void OverridePublicDirectory(string fullPath);
|
||||
|
||||
/// <summary>
|
||||
/// Event fired whenever an activity is performed on a User Account.
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue