2020-07-28 23:09:34 +05:30
|
|
|
|
- return unless page_startup_api_calls.present?
|
|
|
|
|
|
|
|
|
|
= javascript_tag nonce: true do
|
|
|
|
|
:plain
|
|
|
|
|
var gl = window.gl || {};
|
|
|
|
|
gl.startup_calls = #{page_startup_api_calls.to_json};
|
|
|
|
|
if (gl.startup_calls && window.fetch) {
|
|
|
|
|
Object.keys(gl.startup_calls).forEach(apiCall => {
|
2020-11-24 15:15:51 +05:30
|
|
|
|
// fetch won’t send cookies in older browsers, unless you set the credentials init option.
|
|
|
|
|
// We set to `same-origin` which is default value in modern browsers.
|
|
|
|
|
// See https://github.com/whatwg/fetch/pull/585 for more information.
|
2020-07-28 23:09:34 +05:30
|
|
|
|
gl.startup_calls[apiCall] = {
|
2020-11-24 15:15:51 +05:30
|
|
|
|
fetchCall: fetch(apiCall, { credentials: 'same-origin' })
|
2020-07-28 23:09:34 +05:30
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
}
|