6 lines
142 B
Ruby
6 lines
142 B
Ruby
class MoodsController < ApplicationController
|
|
def index
|
|
@mode = Mood.last&.mode || "croisiere"
|
|
@mood_log = Mood.log || []
|
|
end
|
|
end
|