summaryrefslogtreecommitdiff
path: root/app/models/concerns/presentable.rb
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