[32982] Expose BIM export format only on bim mode

https://community.openproject.com/wp/32982

[ci skip]
pull/8268/head
Oliver Günther 5 years ago
parent fdd23c08bc
commit 7cbffc4ec6
No known key found for this signature in database
GPG Key ID: A3A8BDAD7C0C552C
  1. 6
      modules/bim/lib/open_project/bim/patches/api/v3/export_formats.rb

@ -1,7 +1,11 @@
module OpenProject::Bim::Patches
module API::V3::ExportFormats
def representation_formats
super + [representation_format_bcf]
if OpenProject::Configuration.bim?
super + [representation_format_bcf]
else
super
end
end
def representation_format_bcf

Loading…
Cancel
Save