OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/modules/ifc_models/app/helpers/ifc_models_helper.rb

9 lines
238 B

module IFCModelsHelper
def attachment_content_url(attachment)
if attachment.external_storage?
attachment.external_url
else
API::V3::Utilities::PathHelper::ApiV3Path.attachment_content(attachment.id)
end
end
end