Commit 8c823706 authored by Rémy Coutable's avatar Rémy Coutable

Fix Rubocop offenses

Signed-off-by: default avatarRémy Coutable <remy@rymai.me>
parent 4ea82434
...@@ -32,9 +32,7 @@ class Groups::LdapGroupLinksController < Groups::ApplicationController ...@@ -32,9 +32,7 @@ class Groups::LdapGroupLinksController < Groups::ApplicationController
private private
def require_ldap_enabled def require_ldap_enabled
unless Gitlab.config.ldap.enabled return render_404 unless Gitlab.config.ldap.enabled
render_404 and return
end
end end
def ldap_group_link_params def ldap_group_link_params
......
...@@ -50,7 +50,7 @@ module Gitlab ...@@ -50,7 +50,7 @@ module Gitlab
return false unless Gitlab::Geo.secondary? return false unless Gitlab::Geo.secondary?
self.cache_value(:geo_oauth_application) do self.cache_value(:geo_oauth_application) do
Gitlab::Geo.current_node.oauth_application or raise OauthApplicationUndefinedError Gitlab::Geo.current_node.oauth_application || raise OauthApplicationUndefinedError
end end
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment