gitlab-org--gitlab-foss/app/workers/concerns/cluster_applications.rb

12 lines
235 B
Ruby

# frozen_string_literal: true
module ClusterApplications
extend ActiveSupport::Concern
included do
def find_application(app_name, id, &blk)
Clusters::Cluster::APPLICATIONS[app_name].find(id).try(&blk)
end
end
end