diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-14 19:46:53 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-14 19:46:53 +0200 |
commit | 6cf6204d0664d3626d7922ec23147d610201aaf9 (patch) | |
tree | b438ab3cabf70a7295be6529071475b1ba695596 /api/src/routes/sticker-packs | |
parent | :sparkles: stickers (diff) | |
download | server-6cf6204d0664d3626d7922ec23147d610201aaf9.tar.xz |
:sparkles: sticker packs
Diffstat (limited to 'api/src/routes/sticker-packs')
-rw-r--r-- | api/src/routes/sticker-packs/#id/index.ts | 19 | ||||
-rw-r--r-- | api/src/routes/sticker-packs/index.ts | 4 |
2 files changed, 2 insertions, 21 deletions
diff --git a/api/src/routes/sticker-packs/#id/index.ts b/api/src/routes/sticker-packs/#id/index.ts deleted file mode 100644 index 7f723e97..00000000 --- a/api/src/routes/sticker-packs/#id/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Request, Response, Router } from "express"; -import { route } from "@fosscord/api"; - -const router: Router = Router(); - -router.get("/", route({}), async (req: Request, res: Response) => { - //TODO - res.json({ - id: "", - stickers: [], - name: "", - sku_id: "", - cover_sticker_id: "", - description: "", - banner_asset_id: "" - }).status(200); -}); - -export default router; diff --git a/api/src/routes/sticker-packs/index.ts b/api/src/routes/sticker-packs/index.ts index d671c161..89b91bdb 100644 --- a/api/src/routes/sticker-packs/index.ts +++ b/api/src/routes/sticker-packs/index.ts @@ -1,11 +1,11 @@ import { Request, Response, Router } from "express"; import { route } from "@fosscord/api"; +import { StickerPack } from "@fosscord/util/src/entities/StickerPack"; const router: Router = Router(); router.get("/", route({}), async (req: Request, res: Response) => { - //TODO - res.json({ sticker_packs: [] }).status(200); + res.json(await StickerPack.find({})); }); export default router; |