Sha256: afe383802a3f182d538e8268ae368092266529261d629dc1327a17a87c06ac23
Contents?: true
Size: 729 Bytes
Versions: 13
Compression:
Stored size: 729 Bytes
Contents
# frozen_string_literal: true module ContentProviders # Provides a form for a Participant to identify harmful Thoughts by their # ThoughtPatterns. class HarmfulThoughtsEditFormProvider < BitCore::ContentProvider def render_current(options) thoughts = options.participant.thoughts.harmful.no_pattern options.view_context.render( template: "think_feel_do_engine/thoughts/edit_bulk", locals: { thoughts: thoughts, update_path: options.view_context.participant_data_path } ) end def data_class_name "Thought" end def data_attributes [ :id, :pattern_id ] end def show_nav_link? false end end end
Version data entries
13 entries across 13 versions & 1 rubygems