mirror of
https://github.com/elyby/accounts.git
synced 2024-10-30 23:43:00 +05:30
3b9ef7ea70
Добавлен валидатор для TOTP кодов
17 lines
327 B
PHP
17 lines
327 B
PHP
<?php
|
|
namespace tests\codeception\api\_pages;
|
|
|
|
use yii\codeception\BasePage;
|
|
|
|
/**
|
|
* @property \tests\codeception\api\FunctionalTester $actor
|
|
*/
|
|
class TwoFactorAuthRoute extends BasePage {
|
|
|
|
public function credentials() {
|
|
$this->route = '/two-factor-auth';
|
|
$this->actor->sendGET($this->getUrl());
|
|
}
|
|
|
|
}
|