Add method that returns markdown in file uploader

This commit is contained in:
Grzegorz Bizon 2016-03-30 10:56:25 +02:00
parent e64b1e52a2
commit 99ee822857
3 changed files with 6 additions and 2 deletions

View File

@ -32,6 +32,10 @@ class FileUploader < CarrierWave::Uploader::Base
File.join("/uploads", @secret, file.filename)
end
def to_markdown
to_h[:markdown]
end
def to_h
filename = image? ? self.file.basename : self.file.filename
escaped_filename = filename.gsub("]", "\\]")

View File

@ -46,7 +46,7 @@ module Gitlab
end
def needs_rewrite?
!(@text =~ @pattern).nil?
@text =~ @pattern
end
private

View File

@ -23,7 +23,7 @@ module Gitlab
return markdown unless file.try(:exists?)
new_uploader.store!(file)
new_uploader.to_h[:markdown]
new_uploader.to_markdown
end
end