wsp-10027
Organization Users - Add "Member Of" Tab to allow management of Distribution Group Management Allow management and Display of Distribution Group Management. Tab "Member Of" added not only to the "Organization Users" but also to "Exchange Mailboxes" and "Exchange Distribution Lists".
This commit is contained in:
parent
9a566507ea
commit
f4c5e0a7ea
27 changed files with 1680 additions and 110 deletions
|
@ -470,6 +470,25 @@ namespace WebsitePanel.EnterpriseServer
|
|||
return ExchangeServerController.GetDistributionListPermissions(itemId, accountId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public ExchangeAccount[] GetDistributionListsByMember(int itemId, int accountId)
|
||||
{
|
||||
return ExchangeServerController.GetDistributionListsByMember(itemId, accountId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public int AddDistributionListMember(int itemId, string distributionListName, int memberId)
|
||||
{
|
||||
return ExchangeServerController.AddDistributionListMember(itemId, distributionListName, memberId);
|
||||
}
|
||||
|
||||
[WebMethod]
|
||||
public int DeleteDistributionListMember(int itemId, string distributionListName, int memberId)
|
||||
{
|
||||
return ExchangeServerController.DeleteDistributionListMember(itemId, distributionListName, memberId);
|
||||
}
|
||||
|
||||
|
||||
#endregion
|
||||
|
||||
#region MobileDevice
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue