diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.cs
index 8024ccf6..f448c56d 100644
--- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.cs
+++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.cs
@@ -64,6 +64,7 @@ namespace WebsitePanel.Portal.ProviderControls
{
txtFolder.Text = settings["UsersHome"];
txtLocationDrive.Text = settings["LocationDrive"];
+ txtDomain.Text = settings["UsersDomain"];
chkEnableHardQuota.Checked = settings["EnableHardQuota"] == "true" ? true : false;
}
@@ -71,6 +72,7 @@ namespace WebsitePanel.Portal.ProviderControls
{
settings["UsersHome"] = txtFolder.Text;
settings["LocationDrive"] = txtLocationDrive.Text;
+ settings["UsersDomain"] = txtDomain.Text;
settings["EnableHardQuota"] = chkEnableHardQuota.Checked.ToString().ToLower();
}
}
diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.designer.cs b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.designer.cs
index 0326da79..5f4e59a0 100644
--- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.designer.cs
+++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/ProviderControls/EnterpriseStorage_Settings.ascx.designer.cs
@@ -58,6 +58,33 @@ namespace WebsitePanel.Portal.ProviderControls {
///
protected global::System.Web.UI.WebControls.TextBox txtFolder;
+ ///
+ /// lblDomain control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Label lblDomain;
+
+ ///
+ /// txtDomain control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.TextBox txtDomain;
+
+ ///
+ /// valDomain control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.RequiredFieldValidator valDomain;
+
///
/// lblLocationDrive control.
///
diff --git a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebsitePanel.Portal.Modules.csproj b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebsitePanel.Portal.Modules.csproj
index 8eef80c9..08feaaf0 100644
--- a/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebsitePanel.Portal.Modules.csproj
+++ b/WebsitePanel/Sources/WebsitePanel.WebPortal/DesktopModules/WebsitePanel/WebsitePanel.Portal.Modules.csproj
@@ -169,6 +169,7 @@
+
@@ -209,12 +210,26 @@
-
- EnterpriseStorageSpaces.ascx
+
+ EnterpriseStorageFolderGeneralSettings.ascx
ASPXCodeBehind
-
- EnterpriseStorageSpaces.ascx
+
+ EnterpriseStorageFolderGeneralSettings.ascx
+
+
+ EnterpriseStorageCreateFolder.ascx
+ ASPXCodeBehind
+
+
+ EnterpriseStorageCreateFolder.ascx
+
+
+ EnterpriseStorageFolders.ascx
+ ASPXCodeBehind
+
+
+ EnterpriseStorageFolders.ascx
OrganizationSecurityGroupMemberOf.ascx
@@ -297,6 +312,13 @@
AccountsListWithPermissions.ascx
ASPXCodeBehind
+
+ EnterpriseStoragePermissions.ascx
+ ASPXCodeBehind
+
+
+ EnterpriseStoragePermissions.ascx
+
GroupsList.ascx
ASPXCodeBehind
@@ -4008,7 +4030,9 @@
-
+
+
+
@@ -4021,6 +4045,7 @@
+
@@ -5240,11 +5265,18 @@
Designer
-
-
+
+ Designer
+
+
+ Designer
+
Designer
+
+
+
Designer
|