Class: ContentProviders::NewPastFeelProvider

Inherits:
BitCore::ContentProvider
  • Object
show all
Defined in:
app/models/content_providers/new_past_feel_provider.rb

Overview

Allows user to submit a mood from the past 24 hours.

Instance Method Summary collapse

Instance Method Details

#data_attributesObject



19
20
21
# File 'app/models/content_providers/new_past_feel_provider.rb', line 19

def data_attributes
  [:rating]
end

#data_class_nameObject



15
16
17
# File 'app/models/content_providers/new_past_feel_provider.rb', line 15

def data_class_name
  "Mood"
end

#render_current(options) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'app/models/content_providers/new_past_feel_provider.rb', line 5

def render_current(options)
  options.view_context.render(
    template: "moods/new_past_mood",
    locals: {
      mood: options.view_context.current_participant.moods.build,
      create_path: options.view_context.participant_data_path
    }
  )
end

#show_nav_link?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'app/models/content_providers/new_past_feel_provider.rb', line 23

def show_nav_link?
  false
end