summaryrefslogtreecommitdiff
path: root/app/models/concerns/presentable.rb
blob: bc4fbd19a0224498036d2de8ccc2fd326817f749 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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