From bcfcbe2271494b2ceafae6ddd08e4f6491d1f23c Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Sat, 21 May 2022 11:27:34 -0500 Subject: [PATCH] Disable unused methods --- helpers/api/client.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/helpers/api/client.js b/helpers/api/client.js index 89d655e..fdc5ef8 100644 --- a/helpers/api/client.js +++ b/helpers/api/client.js @@ -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`