Fixed bugs with adding new mapped drive and when rename folder. Added new functionality - change folder path for mapped drive, when rename folder.

This commit is contained in:
vfedosevich 2014-06-17 05:53:15 +03:00
parent 5f412a78d3
commit 34f2d2bb4f
6 changed files with 175 additions and 33 deletions

View file

@ -241,5 +241,11 @@ namespace WebsitePanel.Server
{
Organization.SetDriveMapsTargetingFilter(organizationId, accounts, folderName);
}
[WebMethod, SoapHeader("settings")]
public void ChangeDriveMapFolderPath(string organizationId, string oldFolder, string newFolder)
{
Organization.ChangeDriveMapFolderPath(organizationId, oldFolder, newFolder);
}
}
}