Fix filter ID not being a string in REST API (#9303)
parent
d6b9a62e0a
commit
1d38c9750a
|
@ -3,4 +3,8 @@
|
||||||
class REST::FilterSerializer < ActiveModel::Serializer
|
class REST::FilterSerializer < ActiveModel::Serializer
|
||||||
attributes :id, :phrase, :context, :whole_word, :expires_at,
|
attributes :id, :phrase, :context, :whole_word, :expires_at,
|
||||||
:irreversible
|
:irreversible
|
||||||
|
|
||||||
|
def id
|
||||||
|
object.id.to_s
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue