-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* advanced setting to control search request preference * add header tests * add sentince about caching to description * change courier:setRequestPreference to list and add courier:customRequestPreference * update setting text
- Loading branch information
Showing
4 changed files
with
103 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
src/ui/public/courier/fetch/request/request_fetch_params_to_body_provider.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
import { requestFetchParamsToBody } from './request_fetch_params_to_body'; | ||
|
||
export function RequestFetchParamsToBodyProvider(Promise, timefilter, kbnIndex, sessionId) { | ||
export function RequestFetchParamsToBodyProvider(Promise, timefilter, kbnIndex, sessionId, config) { | ||
return (requestsFetchParams) => ( | ||
requestFetchParamsToBody( | ||
requestsFetchParams, | ||
Promise, | ||
timefilter, | ||
kbnIndex, | ||
sessionId) | ||
sessionId, | ||
config) | ||
); | ||
} |