Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTopperDEL <github_com@tparth.de>2021-05-03 11:36:39 +0300
committerTopperDEL <github_com@tparth.de>2021-05-03 11:36:39 +0300
commit6253dcad403df91306200929f21cb69f9a64f2ff (patch)
treececf13568a03d968ab7f7fb367d69f273eed7631 /Duplicati/Library/Backend/Storj/StorjConfig.cs
parenta3d9d4c6ba7fa47fbb64491a93632ae5a262291a (diff)
feat: Rename all parameters and UIs
Existing configurations will not be affected
Diffstat (limited to 'Duplicati/Library/Backend/Storj/StorjConfig.cs')
-rw-r--r--Duplicati/Library/Backend/Storj/StorjConfig.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Duplicati/Library/Backend/Storj/StorjConfig.cs b/Duplicati/Library/Backend/Storj/StorjConfig.cs
index d0280a5c8..5fea0da2d 100644
--- a/Duplicati/Library/Backend/Storj/StorjConfig.cs
+++ b/Duplicati/Library/Backend/Storj/StorjConfig.cs
@@ -10,7 +10,7 @@ namespace Duplicati.Library.Backend.Tardigrade
public class StorjConfig : IWebModule
{
private const ConfigType DEFAULT_CONFIG_TYPE = ConfigType.Satellites;
- private const string KEY_CONFIGTYPE = "tardigrade-config";
+ private const string KEY_CONFIGTYPE = "storj-config";
private static readonly string DEFAULT_CONFIG_TYPE_STR = Enum.GetName(typeof(ConfigType), DEFAULT_CONFIG_TYPE);
public enum ConfigType
@@ -21,7 +21,7 @@ namespace Duplicati.Library.Backend.Tardigrade
#region IWebModule implementation
- public string Key { get { return "tardigrade-getconfig"; } }
+ public string Key { get { return "storj-getconfig"; } }
public string DisplayName { get { return "Storj DCS configuration module"; } }
@@ -56,11 +56,11 @@ namespace Duplicati.Library.Backend.Tardigrade
switch (ct)
{
case ConfigType.Satellites:
- return Tardigrade.KNOWN_TARDIGRADE_SATELLITES;
+ return Tardigrade.KNOWN_STORJ_SATELLITES;
case ConfigType.AuthenticationMethods:
return Tardigrade.KNOWN_AUTHENTICATION_METHODS;
default:
- return Tardigrade.KNOWN_TARDIGRADE_SATELLITES;
+ return Tardigrade.KNOWN_STORJ_SATELLITES;
}
}
#endregion