Lync decoupled from exchange

This commit is contained in:
robvde 2012-11-13 08:49:30 +04:00
parent e09496e4d3
commit cf427c984d
5 changed files with 14 additions and 41 deletions

View file

@ -1500,8 +1500,15 @@ namespace WebsitePanel.EnterpriseServer
if (DataProvider.CheckOCSUserExists(accountId))
{
return BusinessErrorCodes.CURRENT_USER_IS_OCS_USER; ;
return BusinessErrorCodes.CURRENT_USER_IS_OCS_USER;
}
if (DataProvider.CheckLyncUserExists(accountId))
{
return BusinessErrorCodes.CURRENT_USER_IS_LYNC_USER;
}
// load organization
Organization org = GetOrganization(itemId);
if (org == null)