2023-06-14 04:50:55 -04:00
|
|
|
/**
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2023-06-14 04:50:55 -04:00
|
|
|
*/
|
|
|
|
|
export default {
|
2024-06-22 07:56:30 -04:00
|
|
|
interceptors: {
|
|
|
|
|
response: {
|
|
|
|
|
use: () => {},
|
|
|
|
|
},
|
|
|
|
|
request: {
|
|
|
|
|
use: () => {},
|
|
|
|
|
},
|
|
|
|
|
},
|
2023-07-06 12:35:53 -04:00
|
|
|
get: async () => ({ status: 200, data: {} }),
|
2023-06-21 11:10:06 -04:00
|
|
|
delete: async () => ({ status: 200, data: {} }),
|
|
|
|
|
post: async () => ({ status: 200, data: {} }),
|
2025-08-07 05:31:14 -04:00
|
|
|
head: async () => ({ status: 200, data: {} }),
|
2023-06-14 04:50:55 -04:00
|
|
|
}
|