mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 20:42:43 +00:00
Add UI route for testing
This commit is contained in:
@@ -272,6 +272,16 @@ app.get('/print/:id', asyncHandler(async (req, res, next)=>{
|
||||
return next();
|
||||
}));
|
||||
|
||||
//UI Page
|
||||
app.get('/ui', asyncHandler(async (req, res, next)=>{
|
||||
const brew = {
|
||||
title : 'UI PAGE'
|
||||
};
|
||||
req.brew = brew;
|
||||
return next();
|
||||
}));
|
||||
|
||||
|
||||
const nodeEnv = config.get('node_env');
|
||||
const isLocalEnvironment = config.get('local_environments').includes(nodeEnv);
|
||||
// Local only
|
||||
@@ -286,8 +296,6 @@ if(isLocalEnvironment){
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
|
||||
//Render the page
|
||||
const templateFn = require('./../client/template.js');
|
||||
app.use((req, res)=>{
|
||||
|
||||
Reference in New Issue
Block a user