debian-mirror-gitlab/app/workers/concerns/cluster_applications.rb

10 lines
204 B
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
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