make public storage and direct upload optional

This commit is contained in:
Alex Turchyn
2023-07-04 01:58:43 +03:00
parent ff18fef2e3
commit 97b3adf91f
23 changed files with 336 additions and 181 deletions
+4
View File
@@ -19,6 +19,10 @@ module Docuseal
ENV['MULTITENANT'] == 'true'
end
def active_storage_public?
ENV['ACTIVE_STORAGE_PUBLIC'] == 'true'
end
def default_url_options
return DEFAULT_URL_OPTIONS if multitenant?
@@ -98,7 +98,8 @@ module Submissions
(area['x'] * width) + (area['w'] * width) + TEXT_LEFT_MARGIN,
height - (area['y'] * height) - lines[..next_index].sum(&:height) + height_diff
],
A: { Type: :Action, S: :URI, URI: attachment.url }
A: { Type: :Action, S: :URI,
URI: h.rails_blob_url(attachment, **Docuseal.default_url_options) }
}
)
@@ -260,5 +261,9 @@ module Submissions
.write_to_buffer('.png')
end
end
def h
Rails.application.routes.url_helpers
end
end
end