Sha256: 482a569dddfe1cb8d146f2da4b01d462ed15942c54f6b95517a7c904a0a0575f
Contents?: true
Size: 521 Bytes
Versions: 87
Compression:
Stored size: 521 Bytes
Contents
module Pageflow module Admin module FormHelper # Using semantic_form_for directly causes Formtastic deprecation # warnings regarding `input_class_finder` and # `action_class_finder`. `active_admin_form_for` causes issues # in `erb` templates (see # https://github.com/activeadmin/activeadmin/issues/3916). def admin_form_for(resource, options = {}, &block) semantic_form_for(resource, options.merge(builder: ActiveAdmin::FormBuilder), &block) end end end end
Version data entries
87 entries across 87 versions & 1 rubygems