Browse Source
Emit event on enablign or disabling of 2FA provider
Emit event on enablign or disabling of 2FA provider
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>pull/11462/head
No known key found for this signature in database
GPG Key ID: F941078878347C0C
5 changed files with 83 additions and 1 deletions
-
1lib/composer/composer/autoload_classmap.php
-
1lib/composer/composer/autoload_static.php
-
16lib/private/Authentication/TwoFactorAuth/Registry.php
-
4lib/public/Authentication/TwoFactorAuth/IRegistry.php
-
62lib/public/Authentication/TwoFactorAuth/RegistryEvent.php
@ -0,0 +1,62 @@ |
|||
<?php |
|||
declare(strict_types=1); |
|||
/** |
|||
* @copyright Copyright (c) 2018, Roeland Jago Douma <roeland@famdouma.nl> |
|||
* |
|||
* @author Roeland Jago Douma <roeland@famdouma.nl> |
|||
* |
|||
* @license GNU AGPL version 3 or any later version |
|||
* |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU Affero General Public License as |
|||
* published by the Free Software Foundation, either version 3 of the |
|||
* License, or (at your option) any later version. |
|||
* |
|||
* 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 |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
* |
|||
*/ |
|||
|
|||
namespace OCP\Authentication\TwoFactorAuth; |
|||
|
|||
use OCP\IUser; |
|||
use Symfony\Component\EventDispatcher\Event; |
|||
|
|||
/** |
|||
* @since 15.0.0 |
|||
*/ |
|||
class RegistryEvent extends Event { |
|||
|
|||
/** @var IProvider */ |
|||
private $provider; |
|||
|
|||
/** @IUser */ |
|||
private $user; |
|||
|
|||
/** |
|||
* @since 15.0.0 |
|||
*/ |
|||
public function __construct(IProvider $provider, IUser $user) { |
|||
$this->provider = $provider; |
|||
$this->user = $user; |
|||
} |
|||
|
|||
/** |
|||
* @since 15.0.0 |
|||
*/ |
|||
public function getProvider(): IProvider { |
|||
return $this->provider; |
|||
} |
|||
|
|||
/** |
|||
* @since 15.0.0 |
|||
*/ |
|||
public function getUser(): IUser { |
|||
return $this->user; |
|||
} |
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue