summaryrefslogtreecommitdiff
path: root/app/helpers
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-04-14 08:44:24 +0000
committerDouwe Maan <douwe@gitlab.com>2015-04-14 08:44:24 +0000
commit36537c65e3b032ac80b2d7f345111a0af0ab6894 (patch)
tree7fbac1ffb0dfd00071d32382b83b9bc90c9d3cc0 /app/helpers
parent41cdc5eb8a5add35196b185280dd1a5237c6c418 (diff)
parent8e9fbd847d8ad44edd7346428276b055c765e252 (diff)
downloadgitlab-ce-36537c65e3b032ac80b2d7f345111a0af0ab6894.tar.gz
Merge branch 'revert_fix_email_images' into 'master'
Revert "Merge branch 'fix_email_images' into 'master'" This reverts commit d66148ef393f1748c669c934eec4e928d92ef36a, reversing changes made to cdb64a81a8ca96961033b8ab06d5191ef5449634. This change needed to be reverted, because not enough email clients support inline images. /cc @DouweM As discussed before. I'll try to create a MR to allow access to all images this week. I'm a bit busy at the moment so no guarantees. ;) See merge request !513
Diffstat (limited to 'app/helpers')
-rw-r--r--app/helpers/emails_helper.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/helpers/emails_helper.rb b/app/helpers/emails_helper.rb
index 6c253213c3b..0df3ecc90b7 100644
--- a/app/helpers/emails_helper.rb
+++ b/app/helpers/emails_helper.rb
@@ -1,6 +1,3 @@
-require 'html/pipeline'
-require 'html/pipeline/gitlab'
-
module EmailsHelper
# Google Actions
@@ -38,26 +35,4 @@ module EmailsHelper
lexer = Rugments::Lexers::Diff.new
raw formatter.format(lexer.lex(diffcontent))
end
-
- def replace_image_links_with_base64(text, project)
- # Used pipelines in GitLab:
- # GitlabEmailImageFilter - replaces images that have been uploaded as attachments with inline images in emails.
- #
- # see https://gitlab.com/gitlab-org/html-pipeline-gitlab for more filters
- filters = [
- HTML::Pipeline::Gitlab::GitlabEmailImageFilter
- ]
-
- context = {
- base_url: File.join(Gitlab.config.gitlab.url, project.path_with_namespace, 'uploads'),
- upload_path: File.join(Rails.root, 'public', 'uploads', project.path_with_namespace),
- }
-
- pipeline = HTML::Pipeline::Gitlab.new(filters).pipeline
-
- result = pipeline.call(text, context)
- text = result[:output].to_html(save_with: 0)
-
- text.html_safe
- end
end