From 4a393189a90f6b0c6e61ca45bd7a18a2935082ae Mon Sep 17 00:00:00 2001 From: Santiago Petrone Date: Thu, 19 Oct 2017 12:15:46 -0300 Subject: [PATCH] Specify GET Method to Load templates --- src/storage_manager/model/RemoteStorage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage_manager/model/RemoteStorage.js b/src/storage_manager/model/RemoteStorage.js index 08eb41d62b..aa30f3fd0a 100644 --- a/src/storage_manager/model/RemoteStorage.js +++ b/src/storage_manager/model/RemoteStorage.js @@ -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); }, /**