diff options
author | Phil Hughes <me@iamphill.com> | 2018-05-23 17:03:48 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-05-23 17:03:48 +0100 |
commit | 2303b08389279ac0a55765716a089299e9669bed (patch) | |
tree | a7d36aa67359dff0d31b1878af9bb138bdf2494d | |
parent | 31413f4c1469ebffe00cc657c3f94a59b48ace07 (diff) | |
download | gitlab-ce-2303b08389279ac0a55765716a089299e9669bed.tar.gz |
Fixed U2F authentication when used with LDAP
Closes #46661
-rw-r--r-- | app/assets/javascripts/pages/ldap/omniauth_callbacks/index.js | 3 | ||||
-rw-r--r-- | changelogs/unreleased/ldap-u2f-fix.yml | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/app/assets/javascripts/pages/ldap/omniauth_callbacks/index.js b/app/assets/javascripts/pages/ldap/omniauth_callbacks/index.js new file mode 100644 index 00000000000..edd7e38471b --- /dev/null +++ b/app/assets/javascripts/pages/ldap/omniauth_callbacks/index.js @@ -0,0 +1,3 @@ +import initU2F from '../../../shared/sessions/u2f'; + +document.addEventListener('DOMContentLoaded', initU2F); diff --git a/changelogs/unreleased/ldap-u2f-fix.yml b/changelogs/unreleased/ldap-u2f-fix.yml new file mode 100644 index 00000000000..40b017f3d1b --- /dev/null +++ b/changelogs/unreleased/ldap-u2f-fix.yml @@ -0,0 +1,5 @@ +--- +title: Fixed U2F login when used with LDAP +merge_request: +author: +type: fixed |