mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-08-13 15:37:08 +02:00
Add missing config parameter in services
This commit is contained in:
@ -40,11 +40,11 @@ export default {
|
||||
},
|
||||
|
||||
withdraw(ids, config = {}) {
|
||||
return apiClient.patch('/twofaccounts/withdraw?ids=' + ids.join())
|
||||
return apiClient.patch('/twofaccounts/withdraw?ids=' + ids.join(), { ...config })
|
||||
},
|
||||
|
||||
saveOrder(orderedIds, config = {}) {
|
||||
return apiClient.post('/twofaccounts/reorder', { orderedIds: orderedIds })
|
||||
return apiClient.post('/twofaccounts/reorder', { orderedIds: orderedIds }, { ...config })
|
||||
},
|
||||
|
||||
batchDelete(ids, config = {}) {
|
||||
|
Reference in New Issue
Block a user