├── .travis.yml ├── .travis └── before_script.sh ├── Block └── Backend │ └── System │ └── Account │ └── Edit │ └── Form.php ├── Console └── Command │ └── DisableCommand.php ├── Controller └── Adminhtml │ └── System │ └── Account │ └── Tfa │ └── Update.php ├── LICENSE.txt ├── Plugin └── User.php ├── README.md ├── Setup └── InstallSchema.php ├── Test ├── Integration │ ├── Controller │ │ └── Adminhtml │ │ │ └── System │ │ │ └── Account │ │ │ ├── IndexTest.php │ │ │ └── Tfa │ │ │ └── UpdateTest.php │ └── phpunit.xml.dist └── Unit │ ├── Plugin │ └── UserTest.php │ └── phpunit.xml.dist ├── composer.json ├── etc ├── adminhtml │ ├── di.xml │ └── routes.xml ├── di.xml └── module.xml ├── registration.php └── view └── adminhtml ├── layout └── adminhtml_auth_login.xml ├── requirejs-config.js ├── templates └── admin │ └── tfa_field.phtml └── web └── js └── tfa.js /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/.travis.yml -------------------------------------------------------------------------------- /.travis/before_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/.travis/before_script.sh -------------------------------------------------------------------------------- /Block/Backend/System/Account/Edit/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Block/Backend/System/Account/Edit/Form.php -------------------------------------------------------------------------------- /Console/Command/DisableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Console/Command/DisableCommand.php -------------------------------------------------------------------------------- /Controller/Adminhtml/System/Account/Tfa/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Controller/Adminhtml/System/Account/Tfa/Update.php -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Plugin/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Plugin/User.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/README.md -------------------------------------------------------------------------------- /Setup/InstallSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Setup/InstallSchema.php -------------------------------------------------------------------------------- /Test/Integration/Controller/Adminhtml/System/Account/IndexTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Test/Integration/Controller/Adminhtml/System/Account/IndexTest.php -------------------------------------------------------------------------------- /Test/Integration/Controller/Adminhtml/System/Account/Tfa/UpdateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Test/Integration/Controller/Adminhtml/System/Account/Tfa/UpdateTest.php -------------------------------------------------------------------------------- /Test/Integration/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Test/Integration/phpunit.xml.dist -------------------------------------------------------------------------------- /Test/Unit/Plugin/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Test/Unit/Plugin/UserTest.php -------------------------------------------------------------------------------- /Test/Unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/Test/Unit/phpunit.xml.dist -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/composer.json -------------------------------------------------------------------------------- /etc/adminhtml/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/etc/adminhtml/di.xml -------------------------------------------------------------------------------- /etc/adminhtml/routes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/etc/adminhtml/routes.xml -------------------------------------------------------------------------------- /etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/etc/di.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/registration.php -------------------------------------------------------------------------------- /view/adminhtml/layout/adminhtml_auth_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/view/adminhtml/layout/adminhtml_auth_login.xml -------------------------------------------------------------------------------- /view/adminhtml/requirejs-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/view/adminhtml/requirejs-config.js -------------------------------------------------------------------------------- /view/adminhtml/templates/admin/tfa_field.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/view/adminhtml/templates/admin/tfa_field.phtml -------------------------------------------------------------------------------- /view/adminhtml/web/js/tfa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmclain/magento2-tfa/HEAD/view/adminhtml/web/js/tfa.js --------------------------------------------------------------------------------