Integration - activescaffold/active_scaffold GitHub Wiki

ActiveScaffold by itself comes alone so you decide what to use or how to integrate into your solution, allowing to be flexible and avoid dependency problems. Following that approach, there are many gems you can install and ActiveScaffold will integrate them very well out of the box. Note that some of them need some config. So read on:

Data handling

User Interface

User & role management / Security

As global user & management integration notes, you need to know that Active Scaffold uses “current_user” method to refer to interacting user in controllers, methods, helpers and views. Devise use the same convention, so you don’t have to do anything there. But in case you use another name, say account or just user, remember to set current_user_method in application_controller.rb:

ActiveScaffold.set_defaults do |config|
  config.security.current_user_method = :current_login
end
⚠️ **GitHub.com Fallback** ⚠️