16 lines
290 B
Ruby
16 lines
290 B
Ruby
|
module Gitlab
|
||
|
module HookData
|
||
|
class WikiPageBuilder < BaseBuilder
|
||
|
alias_method :wiki_page, :object
|
||
|
|
||
|
def build
|
||
|
wiki_page
|
||
|
.attributes
|
||
|
.merge(
|
||
|
'content' => absolute_image_urls(wiki_page.content)
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|