Sha256: ee9e1119900045cb5ec545db3b8c5649d97af31ac1d702fce53d02d85a5e4cec
Contents?: true
Size: 457 Bytes
Versions: 13
Compression:
Stored size: 457 Bytes
Contents
# frozen_string_literal: true module ContentProviders # Provides a form for a Participant to enter a Thought. class ThoughtsTableProvider < BitCore::ContentProvider def render_current(options) options.view_context.render( template: "think_feel_do_engine/thoughts/thoughts_table", locals: { thoughts: options.participant.thoughts.harmful } ) end def show_nav_link? false end end end
Version data entries
13 entries across 13 versions & 1 rubygems