0
0
Fork 0

Fix application_id erroneous inclusion in ScheduledStatusSerializer (#33159)

This commit is contained in:
Matt Jankowski 2024-12-17 03:54:07 -05:00 committed by GitHub
parent 3ac478472e
commit a7673d361d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 11 additions and 4 deletions

View file

@ -10,6 +10,6 @@ class REST::ScheduledStatusSerializer < ActiveModel::Serializer
end
def params
object.params.without(:application_id)
object.params.without('application_id')
end
end