refactor: use .hbs extension

This commit is contained in:
Axel Cocat 2022-03-05 15:45:16 +01:00
parent ab5dcd3640
commit 28432b6523
11 changed files with 9 additions and 9 deletions

View file

@ -38,7 +38,7 @@ export class IndexController {
}
public async index(req: express.Request, res: express.Response): Promise<void> {
res.render("index.html", {
res.render("index.hbs", {
title: "Armory",
realms: this.armory.config.realms.map(r => r.name),
});