diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-21 17:24:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-09-21 17:59:48 +0200 |
commit | b1f05ef1f36cff5f0bc50f79a05b2393233efe46 (patch) | |
tree | 85252262074f5dcc259208dca32b5a7a106643c3 /apps/user_webdavauth/appinfo | |
parent | 283216e9a0eecb0679b1885842694879721e06f4 (diff) | |
download | nextcloud-server-b1f05ef1f36cff5f0bc50f79a05b2393233efe46.tar.gz nextcloud-server-b1f05ef1f36cff5f0bc50f79a05b2393233efe46.zip |
Move WebDAVAuth to User_External
Diffstat (limited to 'apps/user_webdavauth/appinfo')
-rw-r--r-- | apps/user_webdavauth/appinfo/app.php | 39 | ||||
-rw-r--r-- | apps/user_webdavauth/appinfo/info.xml | 15 | ||||
-rw-r--r-- | apps/user_webdavauth/appinfo/version | 1 |
3 files changed, 0 insertions, 55 deletions
diff --git a/apps/user_webdavauth/appinfo/app.php b/apps/user_webdavauth/appinfo/app.php deleted file mode 100644 index 3f76f803efd..00000000000 --- a/apps/user_webdavauth/appinfo/app.php +++ /dev/null @@ -1,39 +0,0 @@ -<?php -/** - * @author Felix Moeller <mail@felixmoeller.de> - * @author Frank Karlitschek <frank@owncloud.org> - * @author j-ed <juergen@eisfair.org> - * @author Morris Jobke <hey@morrisjobke.de> - * @author Roeland Jago Douma <roeland@famdouma.nl> - * - * @copyright Copyright (c) 2015, ownCloud, Inc. - * @license AGPL-3.0 - * - * This code is free software: you can redistribute it and/or modify - * it under the terms of the GNU Affero General Public License, version 3, - * as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Affero General Public License for more details. - * - * You should have received a copy of the GNU Affero General Public License, version 3, - * along with this program. If not, see <http://www.gnu.org/licenses/> - * - */ - -require_once OC_App::getAppPath('user_webdavauth').'/user_webdavauth.php'; - -OC_APP::registerAdmin('user_webdavauth', 'settings'); - -OC_User::registerBackend("WEBDAVAUTH"); -OC_User::useBackend( "WEBDAVAUTH" ); - -// add settings page to navigation -$entry = array( - 'id' => "user_webdavauth_settings", - 'order'=>1, - 'href' => \OCP\Util::linkTo( "user_webdavauth", "settings.php" ), - 'name' => 'WEBDAVAUTH' -); diff --git a/apps/user_webdavauth/appinfo/info.xml b/apps/user_webdavauth/appinfo/info.xml deleted file mode 100644 index b0827fb51f8..00000000000 --- a/apps/user_webdavauth/appinfo/info.xml +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0"?> -<info> - <id>user_webdavauth</id> - <name>User backend using remote HTTP servers</name> - <description>Authenticate users by a WebDAV call. You can use any WebDAV server, ownCloud server or other web server to authenticate. It should return http 200 for right credentials and http 401 for wrong ones. - - Attention: This app is not compatible with the LDAP user and group backend. This app is not the WebDAV interface of ownCloud, if you don't understand what it does then do not enable it.</description> - <licence>AGPL</licence> - <author>Frank Karlitschek</author> - <requiremin>4.93</requiremin> - <shipped>true</shipped> - <types> - <authentication/> - </types> -</info> diff --git a/apps/user_webdavauth/appinfo/version b/apps/user_webdavauth/appinfo/version deleted file mode 100644 index a3fdef3af89..00000000000 --- a/apps/user_webdavauth/appinfo/version +++ /dev/null @@ -1 +0,0 @@ -1.1.0.2 |