Browse Source
Merge pull request #24912 from owncloud/session-tokens-apache-auth
Merge pull request #24912 from owncloud/session-tokens-apache-auth
Create session tokens for apache auth usersremotes/origin/test-db-column-type-change
11 changed files with 116 additions and 13 deletions
-
3db_structure.xml
-
29lib/private/Authentication/Exceptions/PasswordlessTokenException.php
-
1lib/private/Authentication/Token/DefaultToken.php
-
14lib/private/Authentication/Token/DefaultTokenProvider.php
-
4lib/private/Authentication/Token/IProvider.php
-
18lib/private/User/Session.php
-
2lib/private/legacy/user.php
-
7settings/Controller/AuthSettingsController.php
-
11tests/lib/Authentication/Token/DefaultTokenProviderTest.php
-
38tests/lib/User/SessionTest.php
-
2version.php
@ -0,0 +1,29 @@ |
|||
<?php |
|||
|
|||
/** |
|||
* @author Christoph Wurst <christoph@owncloud.com> |
|||
* |
|||
* @copyright Copyright (c) 2016, 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/> |
|||
* |
|||
*/ |
|||
|
|||
namespace OC\Authentication\Exceptions; |
|||
|
|||
use Exception; |
|||
|
|||
class PasswordlessTokenException extends Exception { |
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue