Avoid calling freeze on already frozen strings in app/helpers

This commit is contained in:
dineshpanda 2019-09-01 00:53:12 +05:30
parent df6f1dd93f
commit 81d690ee1a
1 changed files with 3 additions and 3 deletions

View File

@ -1,9 +1,9 @@
# frozen_string_literal: true
module UserCalloutsHelper
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'.freeze
GCP_SIGNUP_OFFER = 'gcp_signup_offer'.freeze
SUGGEST_POPOVER_DISMISSED = 'suggest_popover_dismissed'.freeze
GKE_CLUSTER_INTEGRATION = 'gke_cluster_integration'
GCP_SIGNUP_OFFER = 'gcp_signup_offer'
SUGGEST_POPOVER_DISMISSED = 'suggest_popover_dismissed'
def show_gke_cluster_integration_callout?(project)
can?(current_user, :create_cluster, project) &&