Fix filter ID not being a string in REST API (#9303)
This commit is contained in:
parent
ecc58c0f23
commit
fa02f878fc
1 changed files with 4 additions and 0 deletions
|
@ -3,4 +3,8 @@
|
|||
class REST::FilterSerializer < ActiveModel::Serializer
|
||||
attributes :id, :phrase, :context, :whole_word, :expires_at,
|
||||
:irreversible
|
||||
|
||||
def id
|
||||
object.id.to_s
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue