small syntax error

This commit is contained in:
brian
2021-03-23 22:45:07 -04:00
parent b5f5f7569e
commit a0101ffb7e
+1 -1
View File
@@ -8,7 +8,7 @@ let prefix = "/api";
api.post = function(url, body){ api.post = function(url, body){
return m.request({ return m.request({
method: 'POST', method: 'POST',
prefix+url, url: prefix+url,
body body
}); });
}; };