gitlab-org--gitlab-foss/app/helpers/user_callouts_helper.rb

15 lines
396 B
Ruby
Raw Normal View History

2018-02-02 21:51:03 +00:00
module UserCalloutsHelper
2018-01-30 14:30:49 +00:00
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'.freeze
def show_gke_cluster_integration_callout?(project)
can?(current_user, :create_cluster, project) &&
!user_dismissed?(GKE_CLUSTER_INTEGRATION)
2018-01-27 16:32:10 +00:00
end
private
def user_dismissed?(feature_name)
current_user&.callouts&.find_by(feature_name: UserCallout.feature_names[feature_name])
2018-01-27 16:32:10 +00:00
end
end