summaryrefslogtreecommitdiff
path: root/app/helpers/users/callouts_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/users/callouts_helper.rb')
-rw-r--r--app/helpers/users/callouts_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/users/callouts_helper.rb b/app/helpers/users/callouts_helper.rb
index a9fd219bbac..6ab78b58457 100644
--- a/app/helpers/users/callouts_helper.rb
+++ b/app/helpers/users/callouts_helper.rb
@@ -49,7 +49,7 @@ module Users
def show_registration_enabled_user_callout?
!Gitlab.com? &&
- current_user&.admin? &&
+ current_user&.can_admin_all_resources? &&
signup_enabled? &&
!user_dismissed?(REGISTRATION_ENABLED_CALLOUT) &&
REGISTRATION_ENABLED_CALLOUT_ALLOWED_CONTROLLER_PATHS.any? { |path| controller.controller_path.match?(path) }
@@ -59,7 +59,7 @@ module Users
end
def show_security_newsletter_user_callout?
- current_user&.admin? &&
+ current_user&.can_admin_all_resources? &&
!user_dismissed?(SECURITY_NEWSLETTER_CALLOUT)
end