зеркало из https://github.com/Azure/git-rest-api.git
fix param decorator
This commit is contained in:
Родитель
61c50f2e35
Коммит
d1e856d7e5
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче