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

7 lines
142 B
Ruby
Raw Normal View History

2025-08-05 16:11:24 +02:00
class MoodsController < ApplicationController
def index
2026-02-20 10:30:12 +01:00
@mode = Current.user.current_mood
@history = Current.user.history
2025-08-05 16:11:24 +02:00
end
end