Welcome to mirror list, hosted at ThFree Co, Russian Federation.

presentable.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1f05abff2f43c7b8940e6db7fe41090743b55a08 (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