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: d0f84831d710b47dda6ac3415ac7b82c55589a00 (plain)
1
2
3
4
5
6
7
module Presentable
  def present(**attributes)
    Gitlab::View::Presenter::Factory.
      new(self, attributes).
      fabricate!
  end
end