6 lines
142 B
Ruby
6 lines
142 B
Ruby
class MoodsController < ApplicationController
|
|
def index
|
|
@mode = Current.user.current_mood
|
|
@history = Current.user.history
|
|
end
|
|
end
|