Fix missing irreversible in filters API, expires_in param (#7976)

This commit is contained in:
Eugen Rochko
2018-07-07 18:51:45 +02:00
committed by GitHub
parent c24d62220d
commit 9804ec3a6d
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
# frozen_string_literal: true
class REST::FilterSerializer < ActiveModel::Serializer
attributes :id, :phrase, :context, :expires_at
attributes :id, :phrase, :context, :expires_at,
:irreversible
end