An error occurred while fetching the assigned milestone of the selected merge_request.
config
default.json +5 -1
routes
api
sessions.js +1 -0
root.js +155 -4
package.json +3 -0
spacedeck.js +8 -2
+ 5
- 1
@@ -29,5 +29,9 @@
@@ -29,5 +29,9 @@
+ 1
- 0
@@ -57,6 +57,7 @@ router.post('/', function(req, res) {
@@ -57,6 +57,7 @@ router.post('/', function(req, res) {
+ 155
- 4
@@ -9,11 +9,155 @@ const router = express.Router();
@@ -9,11 +9,155 @@ const router = express.Router();
@@ -90,9 +234,16 @@ router.get('/account', (req, res) => {
@@ -90,9 +234,16 @@ router.get('/account', (req, res) => {
@@ -134,4 +285,4 @@ router.get('/spaces/:id', (req, res) => {
@@ -134,4 +285,4 @@ router.get('/spaces/:id', (req, res) => {
+ 3
- 0
@@ -34,9 +34,12 @@
@@ -34,9 +34,12 @@
"node-phantom-simple": "2.2.4",
"node-phantom-simple": "2.2.4",
"node-server-screenshot": "^0.2.1",
"node-server-screenshot": "^0.2.1",
"nodemailer": "^4.6.7",
"nodemailer": "^4.6.7",
"passport-saml": "^1.3.5",
"phantomjs-prebuilt": "^2.1.16",
"phantomjs-prebuilt": "^2.1.16",
"read-chunk": "^2.1.0",
"read-chunk": "^2.1.0",
"sanitize-html": "^1.11.1",
"sanitize-html": "^1.11.1",
"serve-favicon": "~2.4.2",
"serve-favicon": "~2.4.2",
+ 8
- 2
@@ -22,7 +22,6 @@ const helmet = require('helmet');
@@ -22,7 +22,6 @@ const helmet = require('helmet');
@@ -92,7 +91,7 @@ spaceRouter.use('/:id', require('./routes/api/space_exports'));
@@ -92,7 +91,7 @@ spaceRouter.use('/:id', require('./routes/api/space_exports'));
app.use('/storage', serveStatic(config.get('storage_local_path')+"/"+config.get('storage_bucket'), {
@@ -108,6 +107,13 @@ if (app.get('env') == 'development') {
@@ -108,6 +107,13 @@ if (app.get('env') == 'development') {