fix swagger?
All checks were successful
Deploy Backend / deploy (push) Successful in 4m5s

This commit is contained in:
Lee
2024-10-19 07:15:28 +01:00
parent a8c40f50d6
commit 37b491a0b5
4 changed files with 44 additions and 1 deletions

View File

@ -24,6 +24,7 @@ import ScoresController from "./controller/scores.controller";
import LeaderboardController from "./controller/leaderboard.controller";
import { DiscordChannels, initDiscordBot, logToChannel } from "./bot/bot";
import { EmbedBuilder } from "discord.js";
import { getAppVersion } from "./common/app.util";
// Load .env file
dotenv.config({
@ -163,7 +164,12 @@ app.use(
*/
app.use(
swagger({
path: isProduction() ? "/api/swagger" : "/swagger",
documentation: {
info: {
title: "ScoreSaber Reloaded Documentation",
version: await getAppVersion(),
},
},
})
);