Skip to content

Commit

Permalink
Specify GET Method to Load templates
Browse files Browse the repository at this point in the history
  • Loading branch information
santiph committed Oct 21, 2017
1 parent d02234c commit 4a39318
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage_manager/model/RemoteStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
},

/**
Expand Down

0 comments on commit 4a39318

Please sign in to comment.