[24343] Allow PDFs to be served inline

It still depends on the browser whether inline PDFs are allowed.
In Firefox, you can configure this manually what should happen. In
Chrome, I'm not sure if there is such an option.

https://community.openproject.com/wp/24343
pull/8548/head
Oliver Günther 4 years ago
parent bf8574f308
commit f37d6d563d
  1. 2
      app/models/attachment.rb

@ -100,7 +100,7 @@ class Attachment < ApplicationRecord
# images are sent inline
def inlineable?
is_plain_text? || is_image?
is_plain_text? || is_image? || is_pdf?
end
def is_plain_text?

Loading…
Cancel
Save