Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cluster_agents_helper.rb « projects « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aeeab250c7aa7eeb8ab5b20f09e84aad0eb7509b (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module Projects::ClusterAgentsHelper
  def js_cluster_agent_details_data(agent_name, project)
    {
      agent_name: agent_name,
      project_path: project.full_path,
      activity_empty_state_image: image_path('illustrations/empty-state/empty-state-agents.svg')
    }
  end
end