File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -22,3 +22,4 @@ is_passive: 0
2222sign_metadata : 1
2323authnreq_signed : 1
2424ssl_verify_hostname : 0
25+ acs_url_in_request : 1
Original file line number Diff line number Diff line change @@ -118,6 +118,8 @@ sub get_login_post {
118118 my $sp = _sp();
119119
120120 my %params = (
121+ defined (config-> {acs_url_in_request }) and (config-> {acs_url_in_request } eq 1) ?
122+ (assertion_url => config-> {url } . config-> {acs_url_post }) : (),
121123 defined (config-> {force_authn }) ? (force_authn => config-> {force_authn }) : (),
122124 defined (config-> {is_passive }) ? (is_passive => config-> {is_passive }) : (),
123125 );
@@ -179,6 +181,8 @@ get '/login' => sub {
179181 my $sp = _sp();
180182
181183 my %params = (
184+ defined (config-> {acs_url_in_request }) and (config-> {acs_url_in_request } eq 1) ?
185+ (assertion_url => config-> {url } . config-> {acs_url_post }) : (),
182186 defined (config-> {force_authn }) ? (force_authn => config-> {force_authn }) : (),
183187 defined (config-> {is_passive }) ? (is_passive => config-> {is_passive }) : (),
184188 );
You can’t perform that action at this time.
0 commit comments