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