diff options
author | Dylan William Hardison <dylan@hardison.net> | 2015-08-24 20:50:16 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2015-08-24 20:50:16 +0200 |
commit | 07a68c6d4fa62432c9668176b4876133d45cce0e (patch) | |
tree | 9052bb9e238c10ba1fd803474d94a6e37d555f29 /template | |
parent | 5fd2b62a573eb1eaef834367008be0e24e1fca57 (diff) | |
download | bugzilla-07a68c6d4fa62432c9668176b4876133d45cce0e.tar.gz bugzilla-07a68c6d4fa62432c9668176b4876133d45cce0e.tar.xz |
Bug 1175643 - Rewrite auth delegation to use a server-side POST instead of a client-side GET to delegate API Key
r/a=dkl
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/user-error.html.tmpl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 710928562..81d5055c6 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -140,6 +140,15 @@ [% title = "Auth delegation can't be confirmed" %] Auth delegation cannot be confirmed due to missing or invalid token. + [% ELSIF error == "auth_delegation_json_error" %] + [% title = "Auth delegation received invalid JSON" %] + Auth delegation received an invalid JSON response from auth consumer: + <pre>[% json_text FILTER html %]</pre> + + [% ELSIF error == "auth_delegation_post_error" %] + [% title = "Auth delegation received invalid status code" %] + Auth delegation received an HTTP response other than 200 OK from auth consumer. Code: [% code FILTER html %] + [% ELSIF error == "auth_failure" %] [% title = "Authorization Required" %] [% admindocslinks = {'groups.html' => 'Group Security'} %] |