Sha256: c850bcf00b158453cd49d2b956af682b49a0f01151f4ed1174c2f950b5be0e9f
Contents?: true
Size: 601 Bytes
Versions: 13
Compression:
Stored size: 601 Bytes
Contents
# frozen_string_literal: true module ContentProviders # Provides a form for a Participant to enter a Thought. class ThoughtsDistortionVizProvider < BitCore::ContentProvider def data_class_name "Thought" end def render_current(options, link_to_fullpage = nil) options.view_context.render( template: "think_feel_do_engine/thoughts/distortion_viz", locals: { thoughts: options.view_context.current_participant.thoughts.harmful, link_to_view: link_to_fullpage } ) end def show_nav_link? false end end end
Version data entries
13 entries across 13 versions & 1 rubygems