6 lines
161 B
Ruby
6 lines
161 B
Ruby
class MoodsController < ApplicationController
|
|
def index
|
|
@user = Current.user
|
|
redirect_to dashboard_path(day: Date.today) unless params[:day]
|
|
end
|
|
end
|