Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/auth/otp/fortinet.rb')
-rw-r--r--lib/gitlab/auth/otp/fortinet.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/gitlab/auth/otp/fortinet.rb b/lib/gitlab/auth/otp/fortinet.rb
new file mode 100644
index 00000000000..a561e97dfcd
--- /dev/null
+++ b/lib/gitlab/auth/otp/fortinet.rb
@@ -0,0 +1,20 @@
+# frozen_string_literal: true
+module Gitlab
+ module Auth
+ module Otp
+ module Fortinet
+ private
+
+ def forti_authenticator_enabled?(user)
+ ::Gitlab.config.forti_authenticator.enabled &&
+ Feature.enabled?(:forti_authenticator, user)
+ end
+
+ def forti_token_cloud_enabled?(user)
+ ::Gitlab.config.forti_token_cloud.enabled &&
+ Feature.enabled?(:forti_token_cloud, user)
+ end
+ end
+ end
+ end
+end