Sha256: 07b0ed67781ba21eef4a12bf27efb943b6bd274edaba8175c392dff3aa809c47
Contents?: true
Size: 673 Bytes
Versions: 55
Compression:
Stored size: 673 Bytes
Contents
module ContentProviders # Provides a form for a Participant to enter a Thought. class NewHarmfulThoughtFormProvider < BitCore::ContentProvider def render_current(options) options.view_context.render( template: "think_feel_do_engine/thoughts/new_harmful", locals: { thought: options.participant.thoughts .build(effect: Thought::EFFECTS[:harmful]), 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