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
|