7 lines
141 B
Ruby
7 lines
141 B
Ruby
module Presentable
|
|
def present(**attributes)
|
|
Gitlab::View::Presenter::Factory
|
|
.new(self, attributes)
|
|
.fabricate!
|
|
end
|
|
end
|