Upgrade to v3
Help developers to move from v2 to v3. Please read carefully and integrate the following breaking changes to ensure a smooth update.
Upgrade to v3
Breaking changes
Cors configuration
# Gemfile
source 'https://rubygems.org'
# ...
gem 'forest_liana'
gem 'rack-cors'module LiveDemoRails
class Application < Rails::Application
# ...
# For Rails 5, use the class Rack::Cors. For Rails 4, you MUST use the string 'Rack::Cors'.
config.middleware.insert_before 0, Rack::Cors do
allow do
origins 'app.forestadmin.com'
resource '*',
headers: :any,
methods: :any,
expose: ['Content-Disposition'],
credentials: true
end
end
end
endGlobal smart action
Schema versioning

Changelogs
Last updated
Was this helpful?