From fa5f528fb5c3620a34d3fb23b576586344227b49 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 19 Feb 2014 11:43:25 -0500 Subject: [PATCH] filter:widgets.getAreas - allows plugins to define widget locations in tpls --- src/routes/admin.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/routes/admin.js b/src/routes/admin.js index c0afc39b4b..e5d5a48f57 100644 --- a/src/routes/admin.js +++ b/src/routes/admin.js @@ -410,7 +410,11 @@ var nconf = require('nconf'), }); app.get('/themes', function (req, res) { - res.json(200, {}); + plugins.fireHook('filter:widgets.getAreas', [], function(err, widgets) { + res.json(200, { + widgets: widgets + }); + }); }); app.get('/testing/categories', function (req, res) {