diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-08-07 21:15:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-07 21:15:16 +0200 |
commit | 8c4a4968be7c4bce2993afb6adc3fa193db3ac3c (patch) | |
tree | 21ea948eb57a2c26a0e480fe4476485bc45d554b | |
parent | :bug: fix avatars (diff) | |
parent | added the /splashes/ route (diff) | |
download | server-8c4a4968be7c4bce2993afb6adc3fa193db3ac3c.tar.xz |
Merge pull request #6 from BanTheNons/invite-splashes
Added invite splashes
-rw-r--r-- | src/Server.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Server.ts b/src/Server.ts index 23e81506..1b79b037 100644 --- a/src/Server.ts +++ b/src/Server.ts @@ -43,6 +43,9 @@ export class CDNServer extends Server { this.app.use("/banners/", avatarsRoute); this.log("info", "[Server] Route /banners registered"); + + this.app.use("/splashes/", avatarsRoute); + this.log("info", "[Server] Route /splashes registered"); this.app.use("/app-icons/", avatarsRoute); this.log("info", "[Server] Route /app-icons registered"); |