diff --git a/lib/Auth/License.php b/lib/Auth/License.php index 194b9e1..77e1b7e 100755 --- a/lib/Auth/License.php +++ b/lib/Auth/License.php @@ -36,10 +36,10 @@ public function __construct(IL10N $l) { $this ->setIdentifier('access:key') ->setScheme(self::SCHEME_ACCESS_KEY) - ->setText($l->t('License')) + ->setText($l->t('Access Key')) ->addParameters([ (new DefinitionParameter(self::SCHEME_ACCESS_KEY, $l->t('Access Key'))) - ->setTooltip($l->t('License Access Key')) + ->setTooltip($l->t('Access Key')) ->setType(DefinitionParameter::VALUE_PASSWORD), ]) ; diff --git a/lib/Backend/BeeSwarm.php b/lib/Backend/BeeSwarm.php index d3d4193..cf7b124 100755 --- a/lib/Backend/BeeSwarm.php +++ b/lib/Backend/BeeSwarm.php @@ -56,8 +56,12 @@ public function __construct(string $appName, IL10N $l, IConfig $config, LoggerIn ->setStorageClass('\OCA\Files_External_Ethswarm\Storage\BeeSwarm') ->setText($l->t('HejBit-Swarm')) ->addParameters([ - (new DefinitionParameter(self::OPTION_HOST_URL, $l->t('Server URL'))) - ->setTooltip($l->t('License Server URL')), + (new DefinitionParameter( + self::OPTION_HOST_URL, + $l->t('Access Server'), + 'app.hejbit.com' + )) + ->setTooltip($l->t('Access Server')), ])->addAuthScheme(License::SCHEME_ACCESS_KEY) ; }