Skip to content

Commit d9a5d79

Browse files
author
Anatolii Bolshakov (Akvelon INC)
committed
Fixed interface
1 parent 20ac11b commit d9a5d79

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/handlers/basiccreds.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import ifm = require('../interfaces/common/VsoBaseInterfaces');
55
import * as resthandlers from 'typed-rest-client/Handlers';
66

77
export class BasicCredentialHandler extends resthandlers.BasicCredentialHandler implements ifm.IRequestHandler {
8-
constructor(username: string, password: string) {
9-
super(username, password);
8+
constructor(username: string, password: string, allowCrossOriginAuthentication?: boolean) {
9+
super(username, password, allowCrossOriginAuthentication);
1010
}
1111
}

0 commit comments

Comments
 (0)