diff --git a/public/templates/admin/facebook.tpl b/public/templates/admin/facebook.tpl index f229fd7231..476edda238 100644 --- a/public/templates/admin/facebook.tpl +++ b/public/templates/admin/facebook.tpl @@ -3,11 +3,19 @@
-

Create a Facebook Application and then paste your application details here.


-
-
+

+ Create a Facebook Application via the + Facebook Developers Page and + then paste your application details here. +

+
+
+
- - \ No newline at end of file + + + \ No newline at end of file diff --git a/public/templates/admin/footer.tpl b/public/templates/admin/footer.tpl index f5fc244c4b..0605179681 100644 --- a/public/templates/admin/footer.tpl +++ b/public/templates/admin/footer.tpl @@ -6,26 +6,135 @@ diff --git a/public/templates/admin/gplus.tpl b/public/templates/admin/gplus.tpl index 343b82cfdd..b8f56a117a 100644 --- a/public/templates/admin/gplus.tpl +++ b/public/templates/admin/gplus.tpl @@ -1,13 +1,21 @@ -

Google Plus Social Authentication

+

Google Accounts Social Authentication


-

Create a Google+ Application and then paste your application details here.


-
-
+

+ Create a Google Application via the + API Console and then paste + your application details here. +

+
+
+
- - \ No newline at end of file + + + \ No newline at end of file diff --git a/public/templates/admin/header.tpl b/public/templates/admin/header.tpl index a987384bb4..f6adffeb78 100644 --- a/public/templates/admin/header.tpl +++ b/public/templates/admin/header.tpl @@ -15,44 +15,7 @@ - + @@ -81,6 +44,8 @@ + +
diff --git a/public/templates/admin/twitter.tpl b/public/templates/admin/twitter.tpl index 527e1ba115..b3099997ea 100644 --- a/public/templates/admin/twitter.tpl +++ b/public/templates/admin/twitter.tpl @@ -3,12 +3,19 @@
-

Create a Twitter Application and then paste your application details here.


-
-
+

+ Create a Twitter Application via the + Twitter Developers Page and then + paste your application details here. +

+
+
+
+ - - \ No newline at end of file + diff --git a/src/websockets.js b/src/websockets.js index 05bdfb0a2d..540945eff3 100644 --- a/src/websockets.js +++ b/src/websockets.js @@ -293,14 +293,6 @@ var SocketIO = require('socket.io').listen(global.server, { log:false }), } }); - socket.on('api:config.redisTest', function() { - meta.testRedis(function(success) { - socket.emit('api:config.redisTest', { - status: success ? 'ok' : 'error' - }); - }); - }); - socket.on('api:config.get', function(data) { meta.config.get(function(config) { socket.emit('api:config.get', config); @@ -308,6 +300,7 @@ var SocketIO = require('socket.io').listen(global.server, { log:false }), }); socket.on('api:config.set', function(data) { + console.log('saving', data); meta.config.set(data.key, data.value, function(err) { if (!err) socket.emit('api:config.set', { status: 'ok' }); });