-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specify GET Method to Load templates #437
Conversation
@@ -74,7 +74,7 @@ module.exports = require('backbone').Model.extend({ | |||
}, | |||
|
|||
load(keys, clb) { | |||
this.request(this.get('urlLoad'), {body: {keys}}, clb); | |||
this.request(this.get('urlLoad'), {body: {keys}, method: 'get'}, clb); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Body on GET?? @.@
One of the ideas of |
7a800e8
to
68b0596
Compare
What about a comma separated list of keys? |
What do you think about removing I don't even see the point of adding So, if you just remove the |
Thanks @santiph 👍 |
Thanks to you, @artf ;) |
published |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
RemoteStorage is using
POST
to load templatesIssue: #436