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