add quests page

This commit is contained in:
smthbh 2025-04-28 13:08:44 -04:00
parent 9a556bacdd
commit 91257a09f4
7 changed files with 2711 additions and 1 deletions

View file

@ -155,6 +155,7 @@ export class Armory {
app.get("/character/:realm/:character/achievements/data", this.wrapRoute(charsController.achievementsData.bind(charsController)));
app.get("/character/:realm/:name/pvp", this.wrapRoute(charsController.pvp.bind(charsController)));
app.get("/character/:realm/:name/reputation", this.wrapRoute(charsController.reputation.bind(charsController)));
app.get("/character/:realm/:name/quests", this.wrapRoute(charsController.quests.bind(charsController)));
const guildsController = new GuildController(this);
app.get("/guild/:realm/:name", this.wrapRoute(guildsController.guild.bind(guildsController)));