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

github.com/nextcloud/user_saml.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-08-10 17:25:25 +0300
committerLukas Reschke <lukas@statuscode.ch>2016-08-10 17:27:21 +0300
commit85364aeb340dd07118ee2a5df9ff1c97c3a6c803 (patch)
treece090ccb1250911d5c4273a16c7c8e29de2e8fa3 /appinfo
parent1d75257e761bfc81cd3848db0dfc5317e3d23c84 (diff)
Use new admin page module
Makes this page a single page as implemented in https://github.com/nextcloud/server/pull/796
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/app.php2
-rw-r--r--appinfo/info.xml8
2 files changed, 6 insertions, 4 deletions
diff --git a/appinfo/app.php b/appinfo/app.php
index a5e77e47..bde5eab2 100644
--- a/appinfo/app.php
+++ b/appinfo/app.php
@@ -21,8 +21,6 @@
require_once __DIR__ . '/../3rdparty/vendor/autoload.php';
-\OCP\App::registerAdmin('user_saml', 'admin');
-
$urlGenerator = \OC::$server->getURLGenerator();
$config = \OC::$server->getConfig();
$request = \OC::$server->getRequest();
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 1fc998b0..9a5f186d 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -4,12 +4,16 @@
<name>SAML Authentication</name>
<description>Authenticates user against a SAML backend, such as Shibboleth.</description>
<licence>AGPL</licence>
- <author>Nextcloud</author>
- <version>1.1.0</version>
+ <author>Lukas Reschke</author>
+ <version>1.2.0</version>
<dependencies>
<owncloud min-version="9.2" max-version="9.2" />
</dependencies>
<types>
<authentication/>
</types>
+ <settings>
+ <admin>\OCA\User_SAML\Settings\Admin</admin>
+ <admin-section>OCA\User_SAML\Settings\Section</admin-section>
+ </settings>
</info>