mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
Remove 'authorization' injection from Bulk Delete, Update, and Upsert classes
This commit is contained in:
parent
94e29cff53
commit
0203323b4a
3 changed files with 0 additions and 3 deletions
|
|
@ -66,7 +66,6 @@ class Delete extends DocumentsDelete
|
|||
->inject('queueForFunctions')
|
||||
->inject('queueForWebhooks')
|
||||
->inject('plan')
|
||||
->inject('authorization')
|
||||
->inject('eventProcessor')
|
||||
->callback($this->action(...));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,7 +68,6 @@ class Update extends DocumentsUpdate
|
|||
->inject('queueForFunctions')
|
||||
->inject('queueForWebhooks')
|
||||
->inject('plan')
|
||||
->inject('authorization')
|
||||
->inject('eventProcessor')
|
||||
->callback($this->action(...));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -68,7 +68,6 @@ class Upsert extends DocumentsUpsert
|
|||
->inject('queueForFunctions')
|
||||
->inject('queueForWebhooks')
|
||||
->inject('plan')
|
||||
->inject('authorization')
|
||||
->inject('eventProcessor')
|
||||
->callback($this->action(...));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue