kibana/x-pack/plugins/ml/server/lib/request_authorization.ts
James Gowdy b39c46eeac
[ML] Disabling secondary auth headers when security is disabled (#72371)
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
2020-07-20 09:30:06 +01:00

15 lines
519 B
TypeScript

/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
import { KibanaRequest } from 'kibana/server';
export function getAuthorizationHeader(request: KibanaRequest) {
return request.headers.authorization === undefined
? {}
: {
headers: { 'es-secondary-authorization': request.headers.authorization },
};
}