-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Third party cookie check #970
Third party cookie check #970
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work! 🥇
docs/general-settings.md
Outdated
|
||
- **thirdPartyCookiesScriptLocation** is the URL to the page containing third-party cookies support check. | ||
To detect whether the user's browser supports the mechanism, use the script in the third-party-cookies catalog. Deploy these files on a domain different from your main application's and set thirdPartyCookiesScriptLocation to the init.html file. During initialization, Luigi detects the cookies support and produces an alert if cookies are disabled in the user's browser. | ||
* **thirdPartyCookieDetection** is a flag to check if third party cookies are supported. When set to `true`, Luigi detects during initialization of an external microfrontend the cookie support and produces an alert if cookies are disabled in the user's browsers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* **thirdPartyCookieDetection** is a flag to check if third party cookies are supported. When set to `true`, Luigi detects during initialization of an external microfrontend the cookie support and produces an alert if cookies are disabled in the user's browsers. | |
* **thirdPartyCookieDetection** is a flag to check if third-party cookies are supported. When set to `true`, Luigi detects cookie support during the initialization of an external micro frontend and produces an alert if cookies are disabled in the user's browsers. |
Co-Authored-By: Alexandra Simeonova <49867570+alexandra-simeonova@users.noreply.github.com>
…ck' of github.com:JohannesDoberer/luigi into third-party-cookie-check * 'third-party-cookie-check' of github.com:JohannesDoberer/luigi: Update docs/general-settings.md * 'third-party-cookie-check' of github.com:JohannesDoberer/luigi: Update docs/general-settings.md
Co-Authored-By: Alexandra Simeonova <49867570+alexandra-simeonova@users.noreply.github.com>
…/luigi into third-party-cookie-check * 'third-party-cookie-check' of github.com:JohannesDoberer/luigi:
…/luigi into third-party-cookie-check * 'third-party-cookie-check' of github.com:JohannesDoberer/luigi: FAQ Documentation (SAP#982) Docu links leftovers (SAP#974) Bugfix invalid initial root navnode (SAP#979) Leftover documentation fixes (SAP#978) Navigate with anchors (SAP#976) remove jesusreal from codeowners, thanks for your great work in this project (SAP#980)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm 👍
* master: remove icon preview page (SAP#988)
Co-Authored-By: Alexandra Simeonova <49867570+alexandra-simeonova@users.noreply.github.com>
Co-Authored-By: Alexandra Simeonova <49867570+alexandra-simeonova@users.noreply.github.com>
core/src/App.html
Outdated
thirdPartyCookiesCheck = LuigiConfig.getConfigValue( | ||
'settings.thirdPartyCookieCheck' | ||
); | ||
if (thirdPartyCookiesCheck.thirdPartyCookieScriptLocation) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thirdPartyCookiesCheck can be null or undefined here..
Co-Authored-By: Alexandra Simeonova <49867570+alexandra-simeonova@users.noreply.github.com>
Co-Authored-By: Alexandra Simeonova <49867570+alexandra-simeonova@users.noreply.github.com>
No description provided.