Sha256: 0317595718247f1acdb18c04dca925fbd529ff542449c2787022fb25d4f5eea1
Contents?: true
Size: 790 Bytes
Versions: 25
Compression:
Stored size: 790 Bytes
Contents
module ContentProviders module Experiences # Allows participants to record a positive experiences/events class NewProvider < BitCore::ContentProvider def data_attributes [ :body_feelings, :challenging_amplification, :description, :emotions, :thoughts ] end def data_class_name "Experience" end def render_current(options) options.view_context.render( template: "think_feel_do_engine/experiences/new_provider", locals: { create_path: options.view_context.participant_data_path, participant: options.view_context.current_participant }) end def show_nav_link? false end end end end
Version data entries
25 entries across 25 versions & 1 rubygems