Skip to content
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

Fix OIDC storage: none #1213

Merged
merged 30 commits into from
Apr 3, 2020
Merged
Changes from 26 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
ace0991
Merge branch 'master' of github.com:SAP/luigi
maxmarkus Nov 20, 2019
305ad98
Merge remote-tracking branch 'upstream/master'
maxmarkus Nov 21, 2019
c4298f6
Merge remote-tracking branch 'upstream/master'
maxmarkus Nov 27, 2019
3fc67ff
Merge remote-tracking branch 'upstream/master'
maxmarkus Jan 13, 2020
4314714
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 10, 2020
b41b3f4
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 13, 2020
01c2e60
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 19, 2020
f605223
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 24, 2020
2c2bdc3
Merge remote-tracking branch 'upstream/master'
maxmarkus Feb 27, 2020
dfa9182
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
db05030
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
5ecc087
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
2132f1c
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 9, 2020
4991686
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 10, 2020
a4a0c2e
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 11, 2020
7466cf7
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 11, 2020
1c9f9ab
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 18, 2020
8a25b58
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 18, 2020
9b1dcb4
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 19, 2020
cd02b87
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 20, 2020
feaec92
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 23, 2020
8f370ca
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 25, 2020
74fa9dd
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 26, 2020
a344465
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 27, 2020
7276892
Merge remote-tracking branch 'upstream/master'
maxmarkus Mar 27, 2020
63ace37
use pushState instead of location.href for oidc
maxmarkus Mar 27, 2020
443d0d5
Merge branch 'master' into 1182-fix-oidc-storage-none
maxmarkus Mar 31, 2020
ba6e0e8
Merge branch 'master' into 1182-fix-oidc-storage-none
maxmarkus Mar 31, 2020
b9a3f37
Merge branch 'master' into 1182-fix-oidc-storage-none
zarkosimic Apr 2, 2020
8d49c29
Merge branch 'master' into 1182-fix-oidc-storage-none
maxmarkus Apr 3, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions plugins/auth/src/auth-oidc/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,19 @@ export default class openIdConnect {
// else persistence might fail.
setTimeout(() => {
if (authenticatedUser.state) {
window.location.href = decodeURIComponent(
authenticatedUser.state
history.pushState(
'',
document.title,
decodeURIComponent(authenticatedUser.state)
);
} else {
window.location.href = window.location.origin;
history.pushState(
'',
document.title,
window.location.pathname + window.location.search
);
}
resolve(true);
}, 50);
})
.catch(err => {
Expand Down