app.kluk.fr/app/controllers/moods_controller.rb

7 lines
161 B
Ruby
Raw Normal View History

2025-08-05 16:11:24 +02:00
class MoodsController < ApplicationController
def index
2026-02-26 17:17:39 +01:00
@user = Current.user
2026-03-22 22:18:56 +01:00
redirect_to dashboard_path(day: Date.today) unless params[:day]
2025-08-05 16:11:24 +02:00
end
end