Browse Source

Hide disabled custom emojis from emoji picker and emoji auto suggestions. (#5613)

Make the same behavior as /api/v1/custom_emojis.
pull/4/head
kedama 6 years ago
committed by Eugen Rochko
parent
commit
d8cd9000d9
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/serializers/initial_state_serializer.rb

+ 1
- 1
app/serializers/initial_state_serializer.rb View File

@ -7,7 +7,7 @@ class InitialStateSerializer < ActiveModel::Serializer
has_many :custom_emojis, serializer: REST::CustomEmojiSerializer
def custom_emojis
CustomEmoji.local
CustomEmoji.local.where(disabled: false)
end
def meta

Loading…
Cancel
Save