Sha256: 7253a1007c41fa697372ca0aad3ac875a2b843613db98356e05048155099b552
Contents?: true
Size: 683 Bytes
Versions: 13
Compression:
Stored size: 683 Bytes
Contents
# frozen_string_literal: true 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
13 entries across 13 versions & 1 rubygems