mirror of
https://github.com/basecamp/once-campfire.git
synced 2026-08-21 06:23:45 +09:00
df76a227dc
First open source release of Campfire 🎉
13 lines
269 B
Ruby
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
|