Disable unused methods

This commit is contained in:
Sam Carlton 2022-05-21 11:27:34 -05:00
parent 201ddf7854
commit bcfcbe2271

View file

@ -30,10 +30,10 @@ const defaultFetchMethod = async function (...args) {
const HTTP_METHODS = [
'GET',
'POST',
'PUT',
'DELETE',
'PATCH'
// 'POST',
// 'PUT',
// 'DELETE',
// 'PATCH'
]
const apiBaseUrl = `${ getApiUrl().replace(/\/$/, '') }/api`