We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ac11b commit d9a5d79Copy full SHA for d9a5d79
1 file changed
api/handlers/basiccreds.ts
@@ -5,7 +5,7 @@ import ifm = require('../interfaces/common/VsoBaseInterfaces');
5
import * as resthandlers from 'typed-rest-client/Handlers';
6
7
export class BasicCredentialHandler extends resthandlers.BasicCredentialHandler implements ifm.IRequestHandler {
8
- constructor(username: string, password: string) {
9
- super(username, password);
+ constructor(username: string, password: string, allowCrossOriginAuthentication?: boolean) {
+ super(username, password, allowCrossOriginAuthentication);
10
}
11
0 commit comments