summaryrefslogtreecommitdiffstats
path: root/afm-client/app/Frontend/etc/AppConfig.js
diff options
context:
space:
mode:
authorFulup Ar Foll <fulup@iot.bzh>2016-01-27 13:01:16 +0100
committerFulup Ar Foll <fulup@iot.bzh>2016-01-27 13:01:16 +0100
commit712446796a33a47ea7e5fafd7950141ac8060530 (patch)
tree72ddf32d3dbf4207fe29a70f9c84819477ece38c /afm-client/app/Frontend/etc/AppConfig.js
parent33940e952258bf1026a5f2c0687e4da01bc66004 (diff)
Handle Error Modal on upload
Diffstat (limited to 'afm-client/app/Frontend/etc/AppConfig.js')
-rw-r--r--afm-client/app/Frontend/etc/AppConfig.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/afm-client/app/Frontend/etc/AppConfig.js b/afm-client/app/Frontend/etc/AppConfig.js
index 16a2c87..16c05b5 100644
--- a/afm-client/app/Frontend/etc/AppConfig.js
+++ b/afm-client/app/Frontend/etc/AppConfig.js
@@ -15,7 +15,8 @@
image : 'images/',
icons : 'images/icons/',
avatar: 'images/avatars/',
- audio : 'images/audio/'
+ audio : 'images/audio/',
+ appli : 'images/appli/'
},
myapi: { // Warning paths should end with /
@@ -43,7 +44,7 @@
.factory('AppCall', function ($http, AppConfig) {
var myCalls = {
get : function(plugin, action, query, callback) {
- query["token"] = AppConfig.session.token; // add token to provided query
+ query.token = AppConfig.session.token; // add token to provided query
$http.get('/api/' + plugin + '/' + action , {params: query}).then (callback, callback);
}