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

github.com/nextcloud/firstrunwizard.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHouraisanNEET <HouraisanNEET@users.noreply.github.com>2021-04-11 17:55:18 +0300
committerJulius Härtl <jus@bitgrid.net>2021-08-20 20:01:23 +0300
commite22fc688180228c609ddbee5623e17e4eb63409b (patch)
tree4dd461702ad4d3252962c3b476b32dafbaef443d /lib
parent6f018ad57e68d63d10c9cc2a7a668f80b93a5612 (diff)
Add F-Droid
Signed-off-by: HouraisanNEET <HouraisanNEET@users.noreply.github.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/WizardController.php1
-rw-r--r--lib/Settings/Personal.php1
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/Controller/WizardController.php b/lib/Controller/WizardController.php
index 1b2992ab..ceff2779 100644
--- a/lib/Controller/WizardController.php
+++ b/lib/Controller/WizardController.php
@@ -85,6 +85,7 @@ class WizardController extends Controller {
$data = [
'desktop' => $this->config->getSystemValue('customclient_desktop', $this->theming->getSyncClientUrl()),
'android' => $this->config->getSystemValue('customclient_android', $this->theming->getAndroidClientUrl()),
+ 'fdroid' => $this->config->getSystemValue('customclient_fdroid', $this->theming->getFDroidClientUrl()),
'ios' => $this->config->getSystemValue('customclient_ios', $this->theming->getiOSClientUrl()),
'appStore' => $appStore,
'useTLS' => $this->request->getServerProtocol() === 'https',
diff --git a/lib/Settings/Personal.php b/lib/Settings/Personal.php
index e88f73bb..12746a26 100644
--- a/lib/Settings/Personal.php
+++ b/lib/Settings/Personal.php
@@ -81,6 +81,7 @@ class Personal implements ISettings {
$clients = [
'desktop' => $this->config->getSystemValue('customclient_desktop', $this->defaults->getSyncClientUrl()),
'android' => $this->config->getSystemValue('customclient_android', $this->defaults->getAndroidClientUrl()),
+ 'fdroid' => $this->config->getSystemValue('customclient_fdroid', $this->defaults->getFDroidClientUrl()),
'ios' => $this->config->getSystemValue('customclient_ios', $this->defaults->getiOSClientUrl())
];
return $clients;