app.kluk.fr/app/helpers/moods_helper.rb
Christophe Robillard 94b6ef89dd
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
guess moods according to user pref
2026-02-26 17:17:39 +01:00

9 lines
170 B
Ruby

module MoodsHelper
def mode_for(mood, user)
if user.guess?
mood[:mode] || mood[:guess] || "unknown"
else
mood[:mode] || "unknown"
end
end
end