├── .eslintrc.js ├── .github ├── CODEOWNERS ├── autoapproval.yml ├── dependabot.yml ├── renovate.json └── workflows │ ├── conventional_commits.yml │ ├── lint-eslint.yml │ ├── lint-info-xml.yml │ ├── lint-php-cs.yml │ ├── lint-php.yml │ ├── lint-stylelint.yml │ ├── node.yml │ ├── phpunit-mysql.yml │ ├── phpunit-pgsql.yml │ ├── phpunit-sqlite.yml │ ├── pr-feedback.yml │ ├── release.yml │ └── reuse.yml ├── .gitignore ├── .l10nignore ├── .nextcloudignore ├── .php-cs-fixer.dist.php ├── .scrutinizer.yml ├── .tx └── config ├── AUTHORS.md ├── CHANGELOG.md ├── LICENSE ├── LICENSES ├── AGPL-3.0-or-later.txt ├── CC0-1.0.txt └── MIT.txt ├── README.md ├── REUSE.toml ├── appinfo ├── info.xml └── routes.php ├── babel.config.js ├── composer.json ├── composer.lock ├── css └── challenge.css ├── doc ├── Admin Documentation.md ├── User Documentation.md └── index.md ├── krankerl.toml ├── l10n ├── .gitkeep ├── af.js ├── af.json ├── ar.js ├── ar.json ├── ast.js ├── ast.json ├── be.js ├── be.json ├── bg.js ├── bg.json ├── br.js ├── br.json ├── ca.js ├── ca.json ├── cs.js ├── cs.json ├── da.js ├── da.json ├── de.js ├── de.json ├── de_DE.js ├── de_DE.json ├── el.js ├── el.json ├── en_GB.js ├── en_GB.json ├── eo.js ├── eo.json ├── es.js ├── es.json ├── es_419.js ├── es_419.json ├── es_AR.js ├── es_AR.json ├── es_CL.js ├── es_CL.json ├── es_CO.js ├── es_CO.json ├── es_CR.js ├── es_CR.json ├── es_DO.js ├── es_DO.json ├── es_EC.js ├── es_EC.json ├── es_GT.js ├── es_GT.json ├── es_HN.js ├── es_HN.json ├── es_MX.js ├── es_MX.json ├── es_NI.js ├── es_NI.json ├── es_PA.js ├── es_PA.json ├── es_PE.js ├── es_PE.json ├── es_PR.js ├── es_PR.json ├── es_PY.js ├── es_PY.json ├── es_SV.js ├── es_SV.json ├── es_UY.js ├── es_UY.json ├── et_EE.js ├── et_EE.json ├── eu.js ├── eu.json ├── fa.js ├── fa.json ├── fi.js ├── fi.json ├── fr.js ├── fr.json ├── ga.js ├── ga.json ├── gl.js ├── gl.json ├── he.js ├── he.json ├── hr.js ├── hr.json ├── hu.js ├── hu.json ├── ia.js ├── ia.json ├── is.js ├── is.json ├── it.js ├── it.json ├── ja.js ├── ja.json ├── ka.js ├── ka.json ├── ka_GE.js ├── ka_GE.json ├── kab.js ├── kab.json ├── ko.js ├── ko.json ├── lo.js ├── lo.json ├── lt_LT.js ├── lt_LT.json ├── lv.js ├── lv.json ├── mk.js ├── mk.json ├── mn.js ├── mn.json ├── nb.js ├── nb.json ├── nl.js ├── nl.json ├── nn_NO.js ├── nn_NO.json ├── oc.js ├── oc.json ├── pl.js ├── pl.json ├── pt_BR.js ├── pt_BR.json ├── pt_PT.js ├── pt_PT.json ├── ro.js ├── ro.json ├── ru.js ├── ru.json ├── sc.js ├── sc.json ├── sk.js ├── sk.json ├── sl.js ├── sl.json ├── sq.js ├── sq.json ├── sr.js ├── sr.json ├── sv.js ├── sv.json ├── sw.js ├── sw.json ├── th.js ├── th.json ├── tr.js ├── tr.json ├── ug.js ├── ug.json ├── uk.js ├── uk.json ├── uz.js ├── uz.json ├── vi.js ├── vi.json ├── zh_CN.js ├── zh_CN.json ├── zh_HK.js ├── zh_HK.json ├── zh_TW.js └── zh_TW.json ├── lib ├── AppInfo │ └── Application.php ├── Command │ └── Generate.php ├── Controller │ └── AdminCodeController.php ├── Db │ ├── Code.php │ └── CodeMapper.php ├── Event │ └── StateChanged.php ├── Listener │ └── StateChangeRegistryUpdater.php ├── Migration │ ├── Version0Date20180907071626.php │ ├── Version1Date20180907092152.php │ ├── Version2Date20180926053333.php │ ├── Version2Date20180926055748.php │ ├── Version3Date20200821134736.php │ └── Version3Date20200821134738.php ├── Provider │ └── AdminProvider.php ├── Service │ └── CodeStorage.php └── Settings │ └── AdminSettings.php ├── package.json ├── rector.php ├── src ├── components │ ├── AdminSettings.vue │ └── CodeGenerator.vue ├── mixins │ └── Nextcloud.js ├── service │ └── AdminCodeService.js └── settings.js ├── stylelint.config.js ├── templates ├── challenge.php └── settings-admin.php ├── tests ├── Integration │ ├── Db │ │ └── CodeMapperTest.php │ └── Service │ │ └── CodeStorageTest.php ├── Unit │ ├── Command │ │ └── GenerateTest.php │ ├── Event │ │ └── StateChangedTest.php │ ├── Listener │ │ └── StateChangeRegistryUpdaterTest.php │ ├── Provider │ │ └── AdminProviderTest.php │ ├── Service │ │ └── CodeStorageTest.php │ └── Template │ │ └── ChallengeTemplateTest.php ├── bootstrap.php └── phpunit.xml ├── vendor-bin ├── csfixer │ ├── composer.json │ └── composer.lock ├── phpunit │ ├── composer.json │ └── composer.lock └── rector │ ├── composer.json │ └── composer.lock └── webpack.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/autoapproval.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/autoapproval.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/conventional_commits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/conventional_commits.yml -------------------------------------------------------------------------------- /.github/workflows/lint-eslint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/lint-eslint.yml -------------------------------------------------------------------------------- /.github/workflows/lint-info-xml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/lint-info-xml.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php-cs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/lint-php-cs.yml -------------------------------------------------------------------------------- /.github/workflows/lint-php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/lint-php.yml -------------------------------------------------------------------------------- /.github/workflows/lint-stylelint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/lint-stylelint.yml -------------------------------------------------------------------------------- /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/phpunit-mysql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-pgsql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/phpunit-pgsql.yml -------------------------------------------------------------------------------- /.github/workflows/phpunit-sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/phpunit-sqlite.yml -------------------------------------------------------------------------------- /.github/workflows/pr-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/pr-feedback.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/reuse.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.github/workflows/reuse.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.gitignore -------------------------------------------------------------------------------- /.l10nignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.l10nignore -------------------------------------------------------------------------------- /.nextcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.nextcloudignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/LICENSES/CC0-1.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/REUSE.toml -------------------------------------------------------------------------------- /appinfo/info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/appinfo/info.xml -------------------------------------------------------------------------------- /appinfo/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/appinfo/routes.php -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/babel.config.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/composer.lock -------------------------------------------------------------------------------- /css/challenge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/css/challenge.css -------------------------------------------------------------------------------- /doc/Admin Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/doc/Admin Documentation.md -------------------------------------------------------------------------------- /doc/User Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/doc/User Documentation.md -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/doc/index.md -------------------------------------------------------------------------------- /krankerl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/krankerl.toml -------------------------------------------------------------------------------- /l10n/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /l10n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/af.js -------------------------------------------------------------------------------- /l10n/af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/af.json -------------------------------------------------------------------------------- /l10n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ar.js -------------------------------------------------------------------------------- /l10n/ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ar.json -------------------------------------------------------------------------------- /l10n/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ast.js -------------------------------------------------------------------------------- /l10n/ast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ast.json -------------------------------------------------------------------------------- /l10n/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/be.js -------------------------------------------------------------------------------- /l10n/be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/be.json -------------------------------------------------------------------------------- /l10n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/bg.js -------------------------------------------------------------------------------- /l10n/bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/bg.json -------------------------------------------------------------------------------- /l10n/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/br.js -------------------------------------------------------------------------------- /l10n/br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/br.json -------------------------------------------------------------------------------- /l10n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ca.js -------------------------------------------------------------------------------- /l10n/ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ca.json -------------------------------------------------------------------------------- /l10n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/cs.js -------------------------------------------------------------------------------- /l10n/cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/cs.json -------------------------------------------------------------------------------- /l10n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/da.js -------------------------------------------------------------------------------- /l10n/da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/da.json -------------------------------------------------------------------------------- /l10n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/de.js -------------------------------------------------------------------------------- /l10n/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/de.json -------------------------------------------------------------------------------- /l10n/de_DE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/de_DE.js -------------------------------------------------------------------------------- /l10n/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/de_DE.json -------------------------------------------------------------------------------- /l10n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/el.js -------------------------------------------------------------------------------- /l10n/el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/el.json -------------------------------------------------------------------------------- /l10n/en_GB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/en_GB.js -------------------------------------------------------------------------------- /l10n/en_GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/en_GB.json -------------------------------------------------------------------------------- /l10n/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/eo.js -------------------------------------------------------------------------------- /l10n/eo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/eo.json -------------------------------------------------------------------------------- /l10n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es.js -------------------------------------------------------------------------------- /l10n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es.json -------------------------------------------------------------------------------- /l10n/es_419.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_419.js -------------------------------------------------------------------------------- /l10n/es_419.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_419.json -------------------------------------------------------------------------------- /l10n/es_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_AR.js -------------------------------------------------------------------------------- /l10n/es_AR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_AR.json -------------------------------------------------------------------------------- /l10n/es_CL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_CL.js -------------------------------------------------------------------------------- /l10n/es_CL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_CL.json -------------------------------------------------------------------------------- /l10n/es_CO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_CO.js -------------------------------------------------------------------------------- /l10n/es_CO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_CO.json -------------------------------------------------------------------------------- /l10n/es_CR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_CR.js -------------------------------------------------------------------------------- /l10n/es_CR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_CR.json -------------------------------------------------------------------------------- /l10n/es_DO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_DO.js -------------------------------------------------------------------------------- /l10n/es_DO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_DO.json -------------------------------------------------------------------------------- /l10n/es_EC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_EC.js -------------------------------------------------------------------------------- /l10n/es_EC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_EC.json -------------------------------------------------------------------------------- /l10n/es_GT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_GT.js -------------------------------------------------------------------------------- /l10n/es_GT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_GT.json -------------------------------------------------------------------------------- /l10n/es_HN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_HN.js -------------------------------------------------------------------------------- /l10n/es_HN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_HN.json -------------------------------------------------------------------------------- /l10n/es_MX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_MX.js -------------------------------------------------------------------------------- /l10n/es_MX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_MX.json -------------------------------------------------------------------------------- /l10n/es_NI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_NI.js -------------------------------------------------------------------------------- /l10n/es_NI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_NI.json -------------------------------------------------------------------------------- /l10n/es_PA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PA.js -------------------------------------------------------------------------------- /l10n/es_PA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PA.json -------------------------------------------------------------------------------- /l10n/es_PE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PE.js -------------------------------------------------------------------------------- /l10n/es_PE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PE.json -------------------------------------------------------------------------------- /l10n/es_PR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PR.js -------------------------------------------------------------------------------- /l10n/es_PR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PR.json -------------------------------------------------------------------------------- /l10n/es_PY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PY.js -------------------------------------------------------------------------------- /l10n/es_PY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_PY.json -------------------------------------------------------------------------------- /l10n/es_SV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_SV.js -------------------------------------------------------------------------------- /l10n/es_SV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_SV.json -------------------------------------------------------------------------------- /l10n/es_UY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_UY.js -------------------------------------------------------------------------------- /l10n/es_UY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/es_UY.json -------------------------------------------------------------------------------- /l10n/et_EE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/et_EE.js -------------------------------------------------------------------------------- /l10n/et_EE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/et_EE.json -------------------------------------------------------------------------------- /l10n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/eu.js -------------------------------------------------------------------------------- /l10n/eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/eu.json -------------------------------------------------------------------------------- /l10n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/fa.js -------------------------------------------------------------------------------- /l10n/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/fa.json -------------------------------------------------------------------------------- /l10n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/fi.js -------------------------------------------------------------------------------- /l10n/fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/fi.json -------------------------------------------------------------------------------- /l10n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/fr.js -------------------------------------------------------------------------------- /l10n/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/fr.json -------------------------------------------------------------------------------- /l10n/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ga.js -------------------------------------------------------------------------------- /l10n/ga.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ga.json -------------------------------------------------------------------------------- /l10n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/gl.js -------------------------------------------------------------------------------- /l10n/gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/gl.json -------------------------------------------------------------------------------- /l10n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/he.js -------------------------------------------------------------------------------- /l10n/he.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/he.json -------------------------------------------------------------------------------- /l10n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/hr.js -------------------------------------------------------------------------------- /l10n/hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/hr.json -------------------------------------------------------------------------------- /l10n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/hu.js -------------------------------------------------------------------------------- /l10n/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/hu.json -------------------------------------------------------------------------------- /l10n/ia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ia.js -------------------------------------------------------------------------------- /l10n/ia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ia.json -------------------------------------------------------------------------------- /l10n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/is.js -------------------------------------------------------------------------------- /l10n/is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/is.json -------------------------------------------------------------------------------- /l10n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/it.js -------------------------------------------------------------------------------- /l10n/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/it.json -------------------------------------------------------------------------------- /l10n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ja.js -------------------------------------------------------------------------------- /l10n/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ja.json -------------------------------------------------------------------------------- /l10n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ka.js -------------------------------------------------------------------------------- /l10n/ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ka.json -------------------------------------------------------------------------------- /l10n/ka_GE.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ka_GE.js -------------------------------------------------------------------------------- /l10n/ka_GE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ka_GE.json -------------------------------------------------------------------------------- /l10n/kab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/kab.js -------------------------------------------------------------------------------- /l10n/kab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/kab.json -------------------------------------------------------------------------------- /l10n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ko.js -------------------------------------------------------------------------------- /l10n/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ko.json -------------------------------------------------------------------------------- /l10n/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/lo.js -------------------------------------------------------------------------------- /l10n/lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/lo.json -------------------------------------------------------------------------------- /l10n/lt_LT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/lt_LT.js -------------------------------------------------------------------------------- /l10n/lt_LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/lt_LT.json -------------------------------------------------------------------------------- /l10n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/lv.js -------------------------------------------------------------------------------- /l10n/lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/lv.json -------------------------------------------------------------------------------- /l10n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/mk.js -------------------------------------------------------------------------------- /l10n/mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/mk.json -------------------------------------------------------------------------------- /l10n/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/mn.js -------------------------------------------------------------------------------- /l10n/mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/mn.json -------------------------------------------------------------------------------- /l10n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/nb.js -------------------------------------------------------------------------------- /l10n/nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/nb.json -------------------------------------------------------------------------------- /l10n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/nl.js -------------------------------------------------------------------------------- /l10n/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/nl.json -------------------------------------------------------------------------------- /l10n/nn_NO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/nn_NO.js -------------------------------------------------------------------------------- /l10n/nn_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/nn_NO.json -------------------------------------------------------------------------------- /l10n/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/oc.js -------------------------------------------------------------------------------- /l10n/oc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/oc.json -------------------------------------------------------------------------------- /l10n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/pl.js -------------------------------------------------------------------------------- /l10n/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/pl.json -------------------------------------------------------------------------------- /l10n/pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/pt_BR.js -------------------------------------------------------------------------------- /l10n/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/pt_BR.json -------------------------------------------------------------------------------- /l10n/pt_PT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/pt_PT.js -------------------------------------------------------------------------------- /l10n/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/pt_PT.json -------------------------------------------------------------------------------- /l10n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ro.js -------------------------------------------------------------------------------- /l10n/ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ro.json -------------------------------------------------------------------------------- /l10n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ru.js -------------------------------------------------------------------------------- /l10n/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ru.json -------------------------------------------------------------------------------- /l10n/sc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sc.js -------------------------------------------------------------------------------- /l10n/sc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sc.json -------------------------------------------------------------------------------- /l10n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sk.js -------------------------------------------------------------------------------- /l10n/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sk.json -------------------------------------------------------------------------------- /l10n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sl.js -------------------------------------------------------------------------------- /l10n/sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sl.json -------------------------------------------------------------------------------- /l10n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sq.js -------------------------------------------------------------------------------- /l10n/sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sq.json -------------------------------------------------------------------------------- /l10n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sr.js -------------------------------------------------------------------------------- /l10n/sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sr.json -------------------------------------------------------------------------------- /l10n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sv.js -------------------------------------------------------------------------------- /l10n/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sv.json -------------------------------------------------------------------------------- /l10n/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sw.js -------------------------------------------------------------------------------- /l10n/sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/sw.json -------------------------------------------------------------------------------- /l10n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/th.js -------------------------------------------------------------------------------- /l10n/th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/th.json -------------------------------------------------------------------------------- /l10n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/tr.js -------------------------------------------------------------------------------- /l10n/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/tr.json -------------------------------------------------------------------------------- /l10n/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ug.js -------------------------------------------------------------------------------- /l10n/ug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/ug.json -------------------------------------------------------------------------------- /l10n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/uk.js -------------------------------------------------------------------------------- /l10n/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/uk.json -------------------------------------------------------------------------------- /l10n/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/uz.js -------------------------------------------------------------------------------- /l10n/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/uz.json -------------------------------------------------------------------------------- /l10n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/vi.js -------------------------------------------------------------------------------- /l10n/vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/vi.json -------------------------------------------------------------------------------- /l10n/zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/zh_CN.js -------------------------------------------------------------------------------- /l10n/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/zh_CN.json -------------------------------------------------------------------------------- /l10n/zh_HK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/zh_HK.js -------------------------------------------------------------------------------- /l10n/zh_HK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/zh_HK.json -------------------------------------------------------------------------------- /l10n/zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/zh_TW.js -------------------------------------------------------------------------------- /l10n/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/l10n/zh_TW.json -------------------------------------------------------------------------------- /lib/AppInfo/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/AppInfo/Application.php -------------------------------------------------------------------------------- /lib/Command/Generate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Command/Generate.php -------------------------------------------------------------------------------- /lib/Controller/AdminCodeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Controller/AdminCodeController.php -------------------------------------------------------------------------------- /lib/Db/Code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Db/Code.php -------------------------------------------------------------------------------- /lib/Db/CodeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Db/CodeMapper.php -------------------------------------------------------------------------------- /lib/Event/StateChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Event/StateChanged.php -------------------------------------------------------------------------------- /lib/Listener/StateChangeRegistryUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Listener/StateChangeRegistryUpdater.php -------------------------------------------------------------------------------- /lib/Migration/Version0Date20180907071626.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Migration/Version0Date20180907071626.php -------------------------------------------------------------------------------- /lib/Migration/Version1Date20180907092152.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Migration/Version1Date20180907092152.php -------------------------------------------------------------------------------- /lib/Migration/Version2Date20180926053333.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Migration/Version2Date20180926053333.php -------------------------------------------------------------------------------- /lib/Migration/Version2Date20180926055748.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Migration/Version2Date20180926055748.php -------------------------------------------------------------------------------- /lib/Migration/Version3Date20200821134736.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Migration/Version3Date20200821134736.php -------------------------------------------------------------------------------- /lib/Migration/Version3Date20200821134738.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Migration/Version3Date20200821134738.php -------------------------------------------------------------------------------- /lib/Provider/AdminProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Provider/AdminProvider.php -------------------------------------------------------------------------------- /lib/Service/CodeStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Service/CodeStorage.php -------------------------------------------------------------------------------- /lib/Settings/AdminSettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/lib/Settings/AdminSettings.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/package.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/rector.php -------------------------------------------------------------------------------- /src/components/AdminSettings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/src/components/AdminSettings.vue -------------------------------------------------------------------------------- /src/components/CodeGenerator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/src/components/CodeGenerator.vue -------------------------------------------------------------------------------- /src/mixins/Nextcloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/src/mixins/Nextcloud.js -------------------------------------------------------------------------------- /src/service/AdminCodeService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/src/service/AdminCodeService.js -------------------------------------------------------------------------------- /src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/src/settings.js -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /templates/challenge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/templates/challenge.php -------------------------------------------------------------------------------- /templates/settings-admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/templates/settings-admin.php -------------------------------------------------------------------------------- /tests/Integration/Db/CodeMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Integration/Db/CodeMapperTest.php -------------------------------------------------------------------------------- /tests/Integration/Service/CodeStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Integration/Service/CodeStorageTest.php -------------------------------------------------------------------------------- /tests/Unit/Command/GenerateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Unit/Command/GenerateTest.php -------------------------------------------------------------------------------- /tests/Unit/Event/StateChangedTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Unit/Event/StateChangedTest.php -------------------------------------------------------------------------------- /tests/Unit/Listener/StateChangeRegistryUpdaterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Unit/Listener/StateChangeRegistryUpdaterTest.php -------------------------------------------------------------------------------- /tests/Unit/Provider/AdminProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Unit/Provider/AdminProviderTest.php -------------------------------------------------------------------------------- /tests/Unit/Service/CodeStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Unit/Service/CodeStorageTest.php -------------------------------------------------------------------------------- /tests/Unit/Template/ChallengeTemplateTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/Unit/Template/ChallengeTemplateTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /vendor-bin/csfixer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/vendor-bin/csfixer/composer.json -------------------------------------------------------------------------------- /vendor-bin/csfixer/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/vendor-bin/csfixer/composer.lock -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/vendor-bin/phpunit/composer.json -------------------------------------------------------------------------------- /vendor-bin/phpunit/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/vendor-bin/phpunit/composer.lock -------------------------------------------------------------------------------- /vendor-bin/rector/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/vendor-bin/rector/composer.json -------------------------------------------------------------------------------- /vendor-bin/rector/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/vendor-bin/rector/composer.lock -------------------------------------------------------------------------------- /webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nextcloud/twofactor_admin/HEAD/webpack.js --------------------------------------------------------------------------------