0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-05-07 16:38:38 +00:00

Start adding new class

This commit is contained in:
db
2026-03-28 13:44:43 -05:00
parent d2ebdf3958
commit ca160d7d83
7 changed files with 291 additions and 11 deletions
+2 -2
View File
@@ -475,13 +475,13 @@ export default async function createApp(vite) {
//Share Page
app.get('/share/:id', dbCheck, asyncHandler(getBrew('share')), asyncHandler(async (req, res, next)=>{
shareEmbedCommon(req,res);
await shareEmbedCommon(req,res);
return next();
}));
//Embed Page - More work will be done on this later...
app.get('/embed/:id', dbCheck, asyncHandler(getBrew('share')), asyncHandler(async (req, res, next)=>{
shareEmbedCommon(req,res);
await shareEmbedCommon(req,res);
return next();
}));