Update src/Appwrite/Platform/Modules/Account/Http/Account/MFA/Authenticators/Create.php

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
This commit is contained in:
Harsh Mahajan 2025-11-24 17:44:25 +05:30 committed by GitHub
parent 9ac594c537
commit b1f5b6946a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -77,7 +77,6 @@ class Create extends Action
)
])
->param('type', null, new WhiteList([Type::TOTP]), 'Type of authenticator. Must be `' . Type::TOTP . '`')
->inject('requestTimestamp')
->inject('response')
->inject('project')
->inject('user')
@ -88,7 +87,6 @@ class Create extends Action
public function action(
string $type,
?\DateTime $requestTimestamp,
Response $response,
Document $project,
Document $user,