No description
Find a file
Nextcloud bot c5c4f53e89
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2026-02-07 02:05:56 +00:00
.github fix(deps): drop Nextcloud 30 support (EOL) 2026-01-28 15:18:41 +01:00
.tx [tx-robot] Update transifex configuration 2022-10-01 03:04:25 +00:00
appinfo fix(deps): drop Nextcloud 30 support (EOL) 2026-01-28 15:18:41 +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 2026-02-07 02:05:56 +00:00
lib refactor(QueryBuilder): Port away from deprecated execute method 2025-10-14 12:25:49 +02:00
LICENSES ci(reuse): Add reuse check 2024-11-15 19:49:01 +01:00
screenshots docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
src refactor: replace remaining then chains with async/await 2025-09-04 13:12:33 +02:00
templates docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
tests test(integration): migrate remaining execute() calls 2025-10-21 11:59:03 +02:00
vendor-bin chore(deps): bump vimeo/psalm from 6.13.0 to ^6.13.1 2025-08-11 00:23:46 +00:00
.babelrc Add and apply eslint 2022-02-11 11:25:46 +01:00
.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 Add more allowed globals 2019-03-27 21:18:15 +01:00
.nextcloudignore chore: ignore some more files when packaging the app 2025-10-14 12:28:59 +02: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
babel.config.js docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
CHANGELOG.md chore(release): v2.3.0 2025-08-19 09:48:31 +02:00
composer.json chore(deps): bump phpunit/phpunit from 9.6.29 to ^9.6.31 (#913) 2025-12-11 14:17:38 +00:00
composer.lock fix(deps): bump phpunit/phpunit from 9.6.31 to v9.6.33 (#930) 2026-01-28 16:34:48 +01:00
COPYING initial commit 2016-08-25 22:54:52 +02:00
krankerl.toml docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
Makefile docs(reuse): Add SPDX header 2024-11-15 19:46:22 +01:00
package-lock.json fix(deps): bump @nextcloud/vue from 9.3.3 to ^9.4.0 2026-01-26 00:30:51 +00:00
package.json fix(deps): bump @nextcloud/vue from 9.3.3 to ^9.4.0 2026-01-26 00:30:51 +00:00
playwright.config.js test(e2e): read playwright base url from environment 2025-09-04 10:47:50 +02:00
psalm.xml ci(psalm): Add PHP version 2026-01-26 11:43:09 +01:00
README.md docs(readme): Add reuse status badge 2024-11-15 19:48:07 +01:00
renovate.json chore: add kesselb as new co-maintainer 2025-11-14 13:17:50 +01:00
REUSE.toml chore: add kesselb as new co-maintainer 2025-11-14 13:17:50 +01:00
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

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.