Skip to content

Commit 9fd59a8

Browse files
committed
passed req to getStatus
1 parent 8169514 commit 9fd59a8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/src/controllers/setup.controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class SetupController {
8484
async getStatus(req: Request, res: Response) {
8585
try {
8686
const statusService = new StatusService();
87-
const status = await statusService.getStatus();
87+
const status = await statusService.getStatus(req);
8888
res.json(status);
8989
} catch (error) {
9090
res.status(500).json(error);

0 commit comments

Comments
 (0)