We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8169514 commit 9fd59a8Copy full SHA for 9fd59a8
1 file changed
backend/src/controllers/setup.controller.ts
@@ -84,7 +84,7 @@ class SetupController {
84
async getStatus(req: Request, res: Response) {
85
try {
86
const statusService = new StatusService();
87
- const status = await statusService.getStatus();
+ const status = await statusService.getStatus(req);
88
res.json(status);
89
} catch (error) {
90
res.status(500).json(error);
0 commit comments