Release v0.6.0 #159

Merged
niggl merged 43 commits from dev into main 2021-03-17 17:58:21 +00:00
Showing only changes of commit 8ba7ee1d48 - Show all commits

View File

@ -62,7 +62,7 @@ const ScanAuth = async (req: Request, res: Response, next: () => void) => {
res.status(401).send("Api token invalid."); res.status(401).send("Api token invalid.");
return; return;
} }
req.headers["station_id"] = station.id.toString();
next(); next();
} }
} }