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