2023-01-23 11:03:31 +01:00

32 lines
599 B
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\TwoFactorAuth;
use Piwik\Piwik;
class API extends \Piwik\Plugin\API
{
/**
* @var TwoFactorAuthentication
*/
private $twoFa;
public function __construct(TwoFactorAuthentication $twoFa)
{
$this->twoFa = $twoFa;
}
public function resetTwoFactorAuth($userLogin)
{
Piwik::checkUserHasSuperUserAccess();
$this->twoFa->disable2FAforUser($userLogin);
}
}