We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents efcaff3 + a835c74 commit 1d69b1eCopy full SHA for 1d69b1e
Backend.js
@@ -1,7 +1,7 @@
1
'use strict'
2
class Backend {
3
static call(module='', data) {
4
- return fetch(new Request(BackendService.getBackend()+'/'+module), {
+ return fetch(new Request(Backend.getBackend()+'/'+module), {
5
method: 'POST',
6
body: JSON.stringify(data)
7
});
0 commit comments