We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d7c30f commit 3c36d98Copy full SHA for 3c36d98
src/index.js
@@ -121,7 +121,7 @@ class DSHttpAdapter {
121
config.method = 'get';
122
}
123
return this.HTTP(deepMixIn(config, {
124
- url: url
+ url
125
}));
126
127
@@ -131,7 +131,7 @@ class DSHttpAdapter {
131
config.method = 'post';
132
133
134
- url: url,
+ url,
135
data: attrs
136
137
@@ -142,7 +142,7 @@ class DSHttpAdapter {
142
config.method = 'put';
143
144
145
146
data: attrs || {}
147
148
@@ -153,7 +153,7 @@ class DSHttpAdapter {
153
config.method = 'delete';
154
155
156
157
158
159
0 commit comments