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