diff options
| author | mo khan <mo@mokhan.ca> | 2025-03-15 15:20:53 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-03-15 15:20:53 -0600 |
| commit | b27894fcfee8a8422ca191ccd87f641eb8befcf0 (patch) | |
| tree | 503b19478f05ca2433082a3c9838e0c6ae401772 /bin/ui | |
| parent | 80f1b83544b3482cbcdab8cdf521a92f2afdfa16 (diff) | |
refactor: authorize unsigned JWT in requests
Diffstat (limited to 'bin/ui')
| -rwxr-xr-x | bin/ui | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -108,13 +108,7 @@ class UI } ) end - if response.code.to_i == 200 - [200, { "Content-Type" => "application/json" }, [JSON.pretty_generate( - request.params.merge(JSON.parse(response.body)) - )]] - else - [response.code, response.header, [response.body]] - end + [response.code, response.header, [response.body]] end def saml_post_to_idp(request) |
