diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-01-24 00:20:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 00:20:23 +0100 |
commit | ce1dee85b58fb7ab41af7ea1d276853630ce59a0 (patch) | |
tree | 2e69928e6e0522043f661dbbb8c66dcae69923d0 /app/controllers/admin | |
parent | dee853f23c65988d505796d11ac71c0fd2f8053e (diff) |
Fix relationships page not showing results in admin UI (#12934)
Follow-up to #12927
Diffstat (limited to 'app/controllers/admin')
-rw-r--r-- | app/controllers/admin/relationships_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/relationships_controller.rb b/app/controllers/admin/relationships_controller.rb index 07d121340..f8a95cfc8 100644 --- a/app/controllers/admin/relationships_controller.rb +++ b/app/controllers/admin/relationships_controller.rb @@ -19,7 +19,7 @@ module Admin end def filter_params - params.slice(RelationshipFilter::KEYS).permit(RelationshipFilter::KEYS) + params.slice(*RelationshipFilter::KEYS).permit(*RelationshipFilter::KEYS) end end end |