aboutsummaryrefslogtreecommitdiff
path: root/routes/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'routes/index.js')
-rw-r--r--routes/index.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/routes/index.js b/routes/index.js
index 1ab2ba3..a65ac69 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -5,15 +5,21 @@ const router = express.Router()
const users = require('../lib/getUserIndex')
/* GET home page. */
-router.get('/', function (req, res, next) {
+router.get(['/', '/s/*', '/t/*', '/r/*', '/c/*'], function (req, res, next) {
+ const isBeta = process.env.BETA === '1'
+
let flags = []
- if (req.query.nfd != null) {
+ if (isBeta) {
+ flags.push('BETA')
+ flags.push('NO_FEATURE_DETECT')
+ } else if (req.query.nfd != null) {
flags.push('NO_FEATURE_DETECT')
}
const flagsStr = `var FLAGS = ${JSON.stringify(flags)};`
const usersStr = `var USERS = ${JSON.stringify(users.users)};`
- res.render('index', { flagsStr, usersStr })
+
+ res.render('index', { flagsStr, usersStr, isBeta })
})
module.exports = router