????

Your IP : 216.73.217.111


Current Path : /proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Agent/lib/
Upload File :
Current File : //proc/self/root/home/arabianr/public_html/wp-content/plugins/extendify/src/Agent/lib/wp.js

import apiFetch from '@wordpress/api-fetch';

export const updateOption = async (option, value) => {
	await apiFetch({
		path: '/extendify/v1/agent/options',
		method: 'post',
		data: { option, value },
	});
};

export const getOption = (option) => {
	const params = new URLSearchParams({ option: String(option) });
	return apiFetch({
		path: `/extendify/v1/agent/options?${params.toString()}`,
		method: 'GET',
	});
};