Sha256: 1383b7a3ecfbf2ae3cf2042becfc576e726ab5ce130708a41d76fa49b4b373d7
Contents?: true
Size: 1006 Bytes
Versions: 4
Compression:
Stored size: 1006 Bytes
Contents
# frozen_string_literal: true module MobileWorkflow module Attachable extend ActiveSupport::Concern include Rails.application.routes.url_helpers def preview_url(attachment, options: { resize_to_fill: [200, 200] }) return nil unless attachment.attached? if attachment.image? rails_representation_url(attachment.variant(options), host: attachment_host) elsif attachment.previewable? rails_representation_url(attachment.preview(options), host: attachment_host) end end def attachment_url(attachment) return nil unless attachment.attached? rails_blob_url(attachment, host: attachment_host) end private def attachment_host ENV.fetch('ATTACHMENTS_HOST', heroku_attachment_host) end def heroku_attachment_host # TODO: MBS - move this to a configuration property app_name = Rails.env.test? ? 'test-app' : ENV.fetch('HEROKU_APP_NAME') "https://#{app_name}.herokuapp.com" end end end
Version data entries
4 entries across 4 versions & 1 rubygems