提交 99ee8228 编写于 作者: G Grzegorz Bizon

Add method that returns markdown in file uploader

上级 e64b1e52
...@@ -32,6 +32,10 @@ class FileUploader < CarrierWave::Uploader::Base ...@@ -32,6 +32,10 @@ class FileUploader < CarrierWave::Uploader::Base
File.join("/uploads", @secret, file.filename) File.join("/uploads", @secret, file.filename)
end end
def to_markdown
to_h[:markdown]
end
def to_h def to_h
filename = image? ? self.file.basename : self.file.filename filename = image? ? self.file.basename : self.file.filename
escaped_filename = filename.gsub("]", "\\]") escaped_filename = filename.gsub("]", "\\]")
......
...@@ -46,7 +46,7 @@ module Gitlab ...@@ -46,7 +46,7 @@ module Gitlab
end end
def needs_rewrite? def needs_rewrite?
!(@text =~ @pattern).nil? @text =~ @pattern
end end
private private
......
...@@ -23,7 +23,7 @@ module Gitlab ...@@ -23,7 +23,7 @@ module Gitlab
return markdown unless file.try(:exists?) return markdown unless file.try(:exists?)
new_uploader.store!(file) new_uploader.store!(file)
new_uploader.to_h[:markdown] new_uploader.to_markdown
end end
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册