diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-04-02 02:09:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-02 02:09:50 +0200 |
commit | 33513753b979dc0526cfeb31bcd4a5bad2e952f1 (patch) | |
tree | 5f0347017da2df930a901b1074bc1c55f6a0e74b /app/controllers/api/v1/lists | |
parent | 123a343d116d3e83cbd04460cc7bd0b6f3d208c4 (diff) |
Fix unpermitted parameters warning when generating pagination URLs (#6995)
Diffstat (limited to 'app/controllers/api/v1/lists')
-rw-r--r-- | app/controllers/api/v1/lists/accounts_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/lists/accounts_controller.rb b/app/controllers/api/v1/lists/accounts_controller.rb index c29c73b3e..f2bded851 100644 --- a/app/controllers/api/v1/lists/accounts_controller.rb +++ b/app/controllers/api/v1/lists/accounts_controller.rb @@ -88,7 +88,7 @@ class Api::V1::Lists::AccountsController < Api::BaseController end def pagination_params(core_params) - params.permit(:limit).merge(core_params) + params.slice(:limit).permit(:limit).merge(core_params) end def unlimited? |