diff options
author | Thibaut Girka <thib@sitedethib.com> | 2018-11-04 12:10:25 +0100 |
---|---|---|
committer | ThibG <thib@sitedethib.com> | 2018-11-28 14:46:07 +0100 |
commit | 06c7fb801518dda3451d8efc3dde17060378e576 (patch) | |
tree | 0a96b690a007c43e7d626797c9c060fb97d2870e /app/controllers | |
parent | 53d0293d259f3b4e8fcfd96aca33867c6af3dd50 (diff) |
Add backend support to read and update list-specific show_replies settings
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/lists_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/api/v1/lists_controller.rb b/app/controllers/api/v1/lists_controller.rb index 054172bee..e5ac45fef 100644 --- a/app/controllers/api/v1/lists_controller.rb +++ b/app/controllers/api/v1/lists_controller.rb @@ -38,6 +38,6 @@ class Api::V1::ListsController < Api::BaseController end def list_params - params.permit(:title) + params.permit(:title, :replies_policy) end end |