This commit is contained in:
Zhenglai Zhang 2021-12-13 14:49:30 +08:00
Родитель 61c50f2e35
Коммит d1e856d7e5
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -7,7 +7,8 @@ import { AUTH_HEADERS, RepoAuth } from "./repo-auth";
* Auth param decorator for controller to inject the repo auth object
*/
export const Auth = createParamDecorator(
(_, req): RepoAuth => {
(_, ctx): RepoAuth => {
const req = ctx.switchToHttp().getRequest();
const repoAuth = RepoAuth.fromHeaders(req.headers);
if (repoAuth) {
return repoAuth;