Addressbook Policy Changes. Add Code to Create Rooms per Organization.
This commit is contained in:
parent
d01b735e6f
commit
8a99080a90
7 changed files with 157 additions and 17 deletions
|
@ -84,6 +84,13 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
action.Id = id;
|
||||
Actions.Add(action);
|
||||
}
|
||||
internal void RegisterNewRoomsAddressList(string id)
|
||||
{
|
||||
TransactionAction action = new TransactionAction();
|
||||
action.ActionType = TransactionAction.TransactionActionTypes.CreateRoomsAddressList;
|
||||
action.Id = id;
|
||||
Actions.Add(action);
|
||||
}
|
||||
internal void RegisterNewAddressPolicy(string id)
|
||||
{
|
||||
TransactionAction action = new TransactionAction();
|
||||
|
@ -241,7 +248,8 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
AddMailboxFullAccessPermission,
|
||||
AddSendAsPermission,
|
||||
RemoveMailboxFullAccessPermission,
|
||||
RemoveSendAsPermission
|
||||
RemoveSendAsPermission,
|
||||
CreateRoomsAddressList
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue