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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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