gitlab-org--gitlab-foss/app/models/concerns/presentable.rb

8 lines
141 B
Ruby

module Presentable
def present(**attributes)
Gitlab::View::Presenter::Factory
.new(self, attributes)
.fabricate!
end
end