1
0
Fork 0
mirror of synced 2024-10-03 19:53:33 +13:00

Regen Specs, fix missing vars

This commit is contained in:
Bradley Schofield 2024-07-03 20:12:07 +09:00
parent f36b4a6a20
commit a60e04358e
8 changed files with 8 additions and 8 deletions

View file

@ -51,5 +51,5 @@ return [
'icon' => '/images/users/phone.png',
'docs' => 'https://appwrite.io/docs/references/cloud/client-web/account#accountCreatePhoneToken',
'enabled' => true,
]
],
];

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -505,7 +505,7 @@ App::put('/v1/account/webauthn')
->inject('dbForProject')
->inject('queueForEvents')
->inject('hooks')
->action(function (string $challengeId, string $challengeResponse, Request $request, Response $response, Document $user, Document $project, Database $dbForProject, Event $queueForEvents, Hooks $hooks) use ($publicKeyCredentialLoader, $authenticatorAttestationResponseValidator) {
->action(function (string $challengeId, string $challengeResponse, Request $request, Response $response, Document $user, Document $project, Database $dbForProject, Event $queueForEvents, Hooks $hooks) {
// Get the challenge from the database
$challengeDocument = Authorization::skip(fn () => $dbForProject->getDocument('webauthnChallenges', $challengeId));