Sha256: 164e9c9033c60d9e26f51dbbd271dcf2553134e03c4be7853fd8fbf8f87c6b71
Contents?: true
Size: 811 Bytes
Versions: 13
Compression:
Stored size: 811 Bytes
Contents
# frozen_string_literal: true module ContentProviders # Provides a list of a Participant"s helpful Thoughts. class HelpfulThoughtsIndexProvider < BitCore::ContentProvider def data_class_name "Thought" end def render_current(options) options.view_context.render( template: "think_feel_do_engine/thoughts/index", locals: { title: "Helpful Thoughts", introduction: introduction, thoughts: options.participant.thoughts.helpful } ) end def show_nav_link? true end private def introduction "<p>Last time you were here...<br>" \ "You noted that you've been thinking some things that are helpful." \ "<p>Being aware of these thoughts can be helpful.".html_safe end end end
Version data entries
13 entries across 13 versions & 1 rubygems