Sha256: 5af8b70d6a65e83e3612821d37506a4fe01c8d6225f81b7566758f64d09e2658
Contents?: true
Size: 753 Bytes
Versions: 13
Compression:
Stored size: 753 Bytes
Contents
# frozen_string_literal: true module ContentProviders # Participant rates their current mood class NewCurrentEmotionProvider < BitCore::ContentProvider def render_current(options) options.view_context.render( template: "think_feel_do_engine/emotions/new_current", locals: { emotional_rating: options .view_context .current_participant .emotional_ratings .build, create_path: options.view_context.participant_data_path } ) end def data_class_name "EmotionalRating" end def data_attributes [:emotion_id, :name, :participant_id, :rating, :is_positive] end def show_nav_link? false end end end
Version data entries
13 entries across 13 versions & 1 rubygems