stable

Clone or download

Read-only

feat: Begin check of registration ceremony

Part of story #31173 register a new passkey This commit introduce route POST /webauthn/registration. This route will be used for last step of registration ceremony : check of passkey response. Currently the route only check that response is present. The rest of route will come in next commits. *Testing:* Fetch POST /webauthn/registration. All tests cases are in PostCheckRegistrationControllerTest Change-Id: I3eaff7baedf696b1be14bee28190653bb9787a0e

Modified Files

Name
M site-content/fr_FR/LC_MESSAGES/tuleap-core.po +16 −1 Go to diff View file
M site-content/pt_BR/LC_MESSAGES/tuleap-core.po +15 −0 Go to diff View file
M src/common/Request/RouteCollector.php +23 −2 Go to diff View file
A src/common/WebAuthn/Controllers/PostRegistrationChallengeController.php +96 −0 Go to diff View file
M src/common/WebAuthn/Controllers/PostRegistrationController.php +44 −39 Go to diff View file
A tests/unit/common/WebAuthn/Controllers/PostRegistrationChallengeControllerTest.php +159 −0 Go to diff View file
M tests/unit/common/WebAuthn/Controllers/PostRegistrationControllerTest.php +139 −94 Go to diff View file