chore: method signatures for sendPostRequest method
This commit is contained in:
@@ -3,7 +3,15 @@ const redirectUri = `${window.location.origin}/`;
|
|||||||
//////////////////////////////////////////////////////////////////////
|
//////////////////////////////////////////////////////////////////////
|
||||||
// GENERAL HELPER FUNCTIONS
|
// GENERAL HELPER FUNCTIONS
|
||||||
|
|
||||||
// Make a POST request and parse the response as JSON
|
/**
|
||||||
|
* Makes a POST request and parses the response as JSON
|
||||||
|
*
|
||||||
|
* @param {String} url - The resource
|
||||||
|
* @param {Object} params - Configuration options
|
||||||
|
* @returns {Object}
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
const sendPostRequest = async (url, params) => {
|
const sendPostRequest = async (url, params) => {
|
||||||
const body = Object.keys(params)
|
const body = Object.keys(params)
|
||||||
.map(key => `${key}=${params[key]}`)
|
.map(key => `${key}=${params[key]}`)
|
||||||
|
|||||||
Reference in New Issue
Block a user