Fix params

This commit is contained in:
Ildar Kamalov 2018-10-11 13:02:14 +03:00 committed by Eugene Bujak
parent 5be66e7dc7
commit 4b8ee9ce83
1 changed files with 1 additions and 3 deletions

View File

@ -169,9 +169,7 @@ export default class Api {
addFilter(url, name) {
const { path, method } = this.FILTERING_ADD_FILTER;
const urlParameter = 'url';
const nameParameter = 'name';
const requestBody = `${urlParameter}=${url}&${nameParameter}=${name}`;
const requestBody = `url=${url}&name=${name}`;
const config = {
data: requestBody,
header: { 'Content-Type': 'text/plain' },