FIX: Respect the full_screen_login parameter from plugin auth providers (#7855)

This behavior was regressed in 427979e7e5
This commit is contained in:
David Taylor 2019-07-04 09:06:29 +01:00 committed by GitHub
parent 1ebc3cce4a
commit 5fdf228db6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ const LoginMethod = Ember.Object.extend({
authUrl += "?reconnect=true";
}
if (fullScreenLogin) {
if (fullScreenLogin || this.full_screen_login) {
document.cookie = "fsl=true";
window.location = authUrl;
} else {