A powerful and extendable Discord bot, with it's own module system :3 thevoid.cafe/projects/voidy

✨ Remove authentication requirement from GET /shop

Changed files
+1 -1
packages
api
routes
api
v1
+1 -1
packages/api/routes/api/v1/shop.ts
··· 4 4 5 5 export const shop = new Hono(); 6 6 7 - shop.get("/", isAuthenticated, async (c) => { 7 + shop.get("/", async (c) => { 8 8 const latestShop = await MinecraftShop.findOne().sort({ createdAt: -1 }); 9 9 10 10 if (!latestShop) {