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: 20fa721cc3bd923d6a4bf30b28174f7249d4973c (plain)
1
2
3
4
5
6
7
8
9
10
# 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
    }
  end
end