🐛 Fix sticker pack api stacking issue

This commit is contained in:
LittleSheep 2025-02-23 12:20:07 +08:00
parent 1dae405232
commit b7a06fabb3

View File

@ -49,16 +49,6 @@ func MapAPIs(app *fiber.App, baseURL string) {
stickers := api.Group("/stickers").Name("Stickers API")
{
stickers.Get("/lookup", lookupStickerBatch)
stickers.Get("/lookup/:alias", getStickerByAlias)
stickers.Get("/lookup/:alias/open", openStickerByAlias)
stickers.Get("/", listStickers)
stickers.Get("/:stickerId", getSticker)
stickers.Post("/", sec.ValidatorMiddleware, createSticker)
stickers.Put("/:stickerId", sec.ValidatorMiddleware, updateSticker)
stickers.Delete("/:stickerId", sec.ValidatorMiddleware, deleteSticker)
packs := stickers.Group("/packs").Name("Sticker Packs API")
{
packs.Get("/", listStickerPacks)
@ -70,6 +60,16 @@ func MapAPIs(app *fiber.App, baseURL string) {
packs.Post("/:packId/own", addStickerPack)
packs.Delete("/:packId/own", removeStickerPack)
}
stickers.Get("/lookup", lookupStickerBatch)
stickers.Get("/lookup/:alias", getStickerByAlias)
stickers.Get("/lookup/:alias/open", openStickerByAlias)
stickers.Get("/", listStickers)
stickers.Get("/:stickerId", getSticker)
stickers.Post("/", sec.ValidatorMiddleware, createSticker)
stickers.Put("/:stickerId", sec.ValidatorMiddleware, updateSticker)
stickers.Delete("/:stickerId", sec.ValidatorMiddleware, deleteSticker)
}
}
}