debian-mirror-gitlab/app/models/concerns/presentable.rb
2018-11-20 20:47:30 +05:30

18 lines
333 B
Ruby

# frozen_string_literal: true
module Presentable
extend ActiveSupport::Concern
class_methods do
def present(attributes)
all.map { |klass_object| klass_object.present(attributes) }
end
end
def present(**attributes)
Gitlab::View::Presenter::Factory
.new(self, attributes)
.fabricate!
end
end