Sha256: 3dfd0f0b76a46d9abfd6aedab67f6409f363e72c723e89e50fe7fb5de29156e8
Contents?: true
Size: 653 Bytes
Versions: 55
Compression:
Stored size: 653 Bytes
Contents
module ContentProviders # Provides a form for a Participant to enter a Thought. class NewCompleteThoughtFormProvider < BitCore::ContentProvider def render_current(options) options.view_context.render( template: "think_feel_do_engine/thoughts/new_complete", 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, :challenging_thought, :act_as_if] end def show_nav_link? false end end end
Version data entries
55 entries across 55 versions & 1 rubygems