login page

This commit is contained in:
2022-10-17 19:15:38 +02:00
parent 89b48d67a1
commit 8fc5a164a4
6 changed files with 182 additions and 30 deletions

View File

@ -21,7 +21,7 @@ class Server {
this.app.use(
session({ secret: randomUUID(), cookie: { maxAge: 1000 * 3600 * 24 } }),
);
this.app.use(checkPermissions());
//this.app.use(checkPermissions());
this.app.use(getRoutes(services));
this.app.use(ErrorHandler());
}