scinote-web/app/services/open_vector_editor_service.rb

10 lines
161 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class OpenVectorEditorService
class << self
def enabled?
ENV.fetch('SCINOTE_OVE_ENABLED') == 'true'
end
end
end