Sha256: dd3d6a938d44b2756d641dded8b63d57cca01d6571dc55d5b92ba921d149d312
Contents?: true
Size: 605 Bytes
Versions: 55
Compression:
Stored size: 605 Bytes
Contents
module ContentProviders # Provides multiple forms for a Participant to enter Thoughts. class NewThoughtsFormProvider < BitCore::ContentProvider def render_current(options) options.view_context.render( template: "think_feel_do_engine/thoughts/new_bulk", locals: { thoughts: [options.participant.thoughts.build], create_path: options.view_context.participant_data_path } ) end def data_class_name "Thought" end def data_attributes [:content, :effect] end def show_nav_link? false end end end
Version data entries
55 entries across 55 versions & 1 rubygems