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/config/initializers/rabl_init.rb

25 lines
1.0 KiB

Rabl.configure do |config|
config.json_engine = ::Oj # Class with #dump class method (defaults JSON)
config.include_json_root = true
config.include_xml_root = false
config.include_child_root = false
config.xml_options = { :dasherize => false, :skip_types => false }
# Commented as these are defaults
# config.cache_all_output = false
# config.cache_sources = Rails.env != 'development' # Defaults to false
# config.cache_engine = Rabl::CacheEngine.new # Defaults to Rails cache
# config.perform_caching = false
# config.escape_all_output = false
# config.msgpack_engine = nil # Defaults to ::MessagePack
# config.bson_engine = nil # Defaults to ::BSON
# config.plist_engine = nil # Defaults to ::Plist::Emit
# config.include_msgpack_root = true
# config.include_bson_root = true
# config.include_plist_root = true
# config.enable_json_callbacks = false
# config.view_paths = []
# config.raise_on_missing_attribute = true # Defaults to false
# config.replace_nil_values_with_empty_strings = true # Defaults to false
end