Files
once-campfire/app/helpers/emoji_helper.rb
T
Kevin McConnell df76a227dc Hello world
First open source release of Campfire 🎉
2025-08-21 09:31:59 +01:00

13 lines
269 B
Ruby

module EmojiHelper
REACTIONS = {
"👍" => "Thumbs up",
"👏" => "Clapping",
"👋" => "Waving hand",
"💪" => "Muscle",
"❤️" => "Red heart",
"😂" => "Face with tears of joy",
"🎉" => "Party popper",
"🔥" => "Fire"
}
end