debian-mirror-gitlab/app/views/layouts/_startup_js.html.haml

17 lines
669 B
Text
Raw Normal View History

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 wont 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
};
});
}