debian-mirror-gitlab/app/helpers/projects/cluster_agents_helper.rb
2022-03-02 08:16:31 +05:30

12 lines
401 B
Ruby

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