mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
FIX: Respect the full_screen_login parameter from plugin auth providers (#7855)
This behavior was regressed in 427979e7e5
This commit is contained in:
parent
1ebc3cce4a
commit
5fdf228db6
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user