From ca99f19d7dc4f20fc9c7c3c81bb7ba3bd0c0dfc9 Mon Sep 17 00:00:00 2001 From: Michael Hackstein Date: Sun, 14 Dec 2014 00:30:57 +0100 Subject: [PATCH] First draft of a create my own app template generator --- js/apps/system/aardvark/aardvark.js | 2 +- .../js/templates/modalApplicationMount.ejs | 60 ++++++++++++++++++- .../frontend/js/views/applicationsView.js | 53 +++++++++++++++- 3 files changed, 109 insertions(+), 6 deletions(-) diff --git a/js/apps/system/aardvark/aardvark.js b/js/apps/system/aardvark/aardvark.js index 4c3cbc5630..85fd4eab4f 100644 --- a/js/apps/system/aardvark/aardvark.js +++ b/js/apps/system/aardvark/aardvark.js @@ -340,7 +340,7 @@ controller.get('/foxxes', function (req, res) { * */ controller.get('/foxxes/fishbowl', function (req, res) { - FoxxManager.update(); + // FoxxManager.update(); res.json(FoxxManager.availableJson()); }).summary("List of all foxx apps submitted to the fishbowl store.") .notes("This function contacts the fishbowl and reports which apps are available for install"); diff --git a/js/apps/system/aardvark/frontend/js/templates/modalApplicationMount.ejs b/js/apps/system/aardvark/frontend/js/templates/modalApplicationMount.ejs index 8ff0401dd1..c8262f0829 100644 --- a/js/apps/system/aardvark/frontend/js/templates/modalApplicationMount.ejs +++ b/js/apps/system/aardvark/frontend/js/templates/modalApplicationMount.ejs @@ -1,19 +1,73 @@