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