2018-03-17 18:26:18 +05:30
|
|
|
module UserCalloutsHelper
|
|
|
|
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'.freeze
|
2018-10-15 14:42:47 +05:30
|
|
|
GCP_SIGNUP_OFFER = 'gcp_signup_offer'.freeze
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
def show_gke_cluster_integration_callout?(project)
|
|
|
|
can?(current_user, :create_cluster, project) &&
|
|
|
|
!user_dismissed?(GKE_CLUSTER_INTEGRATION)
|
|
|
|
end
|
|
|
|
|
2018-10-15 14:42:47 +05:30
|
|
|
def show_gcp_signup_offer?
|
|
|
|
!user_dismissed?(GCP_SIGNUP_OFFER)
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
private
|
|
|
|
|
|
|
|
def user_dismissed?(feature_name)
|
|
|
|
current_user&.callouts&.find_by(feature_name: UserCallout.feature_names[feature_name])
|
|
|
|
end
|
|
|
|
end
|