Add support for custom emojis in poll options (#10322)
* Backend changes for custom emoji support in poll options * Serialize poll emojis in REST API * Render custom emojis in poll options * Render custom emoji in poll options on public pages
This commit is contained in:
parent
66d9452092
commit
80f0910e21
9 changed files with 35 additions and 7 deletions
|
@ -5,6 +5,7 @@ class REST::PollSerializer < ActiveModel::Serializer
|
|||
:multiple, :votes_count
|
||||
|
||||
has_many :loaded_options, key: :options
|
||||
has_many :emojis, serializer: REST::CustomEmojiSerializer
|
||||
|
||||
attribute :voted, if: :current_user?
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue