tangled
alpha
login
or
join now
thevoid.cafe
/
voidy
A powerful and extendable Discord bot, with it's own module system :3
thevoid.cafe/projects/voidy
0
fork
atom
overview
issues
pulls
pipelines
✨ Remove authentication requirement from GET /shop
thevoid.cafe
2 weeks ago
714fa94c
cd24e8a3
options
unified
split
Changed files
+1
-1
packages
api
routes
api
v1
shop.ts
+1
-1
packages/api/routes/api/v1/shop.ts
···
4
4
5
5
export const shop = new Hono();
6
6
7
7
-
shop.get("/", isAuthenticated, async (c) => {
7
7
+
shop.get("/", async (c) => {
8
8
const latestShop = await MinecraftShop.findOne().sort({ createdAt: -1 });
9
9
10
10
if (!latestShop) {