| Module | ApplicationHelper |
| In: |
app/helpers/application_helper.rb
|
Methods added to this helper will be available to all templates in the application.
Have fields_for default :builder to Access::Sensitive::FormBuilder if :if_not_permitted is supplied.
# File app/helpers/application_helper.rb, line 36
36: def fields_for( *args )
37: hack_form_for_args( args )
38: super
39: end
Have form_for default :builder to Access::Sensitive::FormBuilder if :if_not_permitted is supplied.
# File app/helpers/application_helper.rb, line 28
28: def form_for( *args, &block )
29: hack_form_for_args( args )
30: super
31: end