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 = [ const HTTP_METHODS = [
'GET', 'GET',
'POST', // 'POST',
'PUT', // 'PUT',
'DELETE', // 'DELETE',
'PATCH' // 'PATCH'
] ]
const apiBaseUrl = `${ getApiUrl().replace(/\/$/, '') }/api` const apiBaseUrl = `${ getApiUrl().replace(/\/$/, '') }/api`