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

lolsob-rspec
Eugen Rochko 2018-07-07 18:51:45 +02:00 committed by GitHub
parent 249d438bc0
commit 0dbaa1badf
2 changed files with 3 additions and 2 deletions

View File

@ -43,6 +43,6 @@ class Api::V1::FiltersController < Api::BaseController
end
def resource_params
params.permit(:phrase, :expires_at, :irreversible, context: [])
params.permit(:phrase, :expires_in, :irreversible, context: [])
end
end

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