summaryrefslogtreecommitdiff
path: root/ee/app/controllers/ee/ldap/omniauth_callbacks_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ee/app/controllers/ee/ldap/omniauth_callbacks_controller.rb')
-rw-r--r--ee/app/controllers/ee/ldap/omniauth_callbacks_controller.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/ee/app/controllers/ee/ldap/omniauth_callbacks_controller.rb b/ee/app/controllers/ee/ldap/omniauth_callbacks_controller.rb
deleted file mode 100644
index f1e851a210b..00000000000
--- a/ee/app/controllers/ee/ldap/omniauth_callbacks_controller.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-module EE
- module Ldap
- module OmniauthCallbacksController
- extend ::Gitlab::Utils::Override
-
- override :sign_in_and_redirect
- def sign_in_and_redirect(user)
- # The counter gets incremented in `sign_in_and_redirect`
- show_ldap_sync_flash if user.sign_in_count == 0
-
- super
- end
-
- private
-
- def show_ldap_sync_flash
- flash[:notice] = 'LDAP sync in progress. This could take a few minutes. '\
- 'Refresh the page to see the changes.'
- end
- end
- end
-end