WebAuthn Two-Factor Provider for Nextcloud
Перейти к файлу
Richard Steinmetz 7e4c3c8e5e
Merge pull request #693 from nextcloud/dependabot/npm_and_yarn/cross-spawn-7.0.6
chore(deps-dev): bump cross-spawn from 7.0.3 to 7.0.6
2024-11-19 12:03:08 +01:00
.github ci(psalm-matrix): set up minimum supported php version 2024-11-16 18:36:28 +01:00
.tx
LICENSES ci(reuse): Add reuse check 2024-11-15 19:49:01 +01:00
appinfo docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
css docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
img docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
l10n Fix(l10n): Update translations from Transifex 2024-11-04 01:56:00 +00:00
lib docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
screenshots docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
src docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
templates docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
tests docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
vendor-bin/cs-fixer fix(deps): bump nextcloud/coding-standard from 1.3.1 to ^1.3.2 2024-11-03 21:12:28 +01:00
.babelrc
.eslintrc.js docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
.git-blame-ignore-revs chore: ignore coding-standard update 1.3.2 in git blame 2024-11-03 21:12:45 +01:00
.gitignore docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
.jshintrc
.nextcloudignore docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
.php-cs-fixer.dist.php docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
.scrutinizer.yml docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
AUTHORS.md docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
CHANGELOG.md docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
COPYING
Makefile docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
README.md docs(readme): Add reuse status badge 2024-11-15 19:48:07 +01:00
REUSE.toml docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
babel.config.js docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
composer.json
composer.lock chore(deps-dev): bump symfony/process from 5.4.28 to 6.4.14 2024-11-06 20:22:38 +00:00
krankerl.toml docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
package-lock.json chore(deps-dev): bump cross-spawn from 7.0.3 to 7.0.6 2024-11-19 09:35:32 +00:00
package.json fix(deps): bump @nextcloud/vue from 8.19.0 to ^8.20.0 2024-11-16 17:46:13 +00:00
playwright.config.js docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
psalm.xml docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
renovate.json
webpack.config.js docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
webpack.test.config.js docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00

README.md

WebAuthn second factor provider for Nextcloud

REUSE status

Requirements

In order to use this app for authentication, you have to use a browser that supports the WebAuthn standard.

Migration from Two-Factor U2F

It is possible to migrate U2F device registrations to WebAuthn devices registrations. For the migratation, you need command line access to run occ.

# View options – you can run this for all or only specific users
php occ twofactor_webauthn:migrate-u2f --help

# Migrate all users
php occ twofactor_webauthn:migrate-u2f --all

# Disable the U2F app
php occ app:disable twofactor_u2f

# Clean up any U2F registrations
php occ twofactorauth:cleanup u2f

Login with external apps

Once you enable WebAuthn with Two Factor WebAuthn, your applications (for example your GNOME app) will need to login using device passwords. Find out more about this in the user documentation.

Development Setup

This app uses composer and npm to manage dependencies. Use

composer install
npm install
npm run build

to set up a development version of this app.