diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-28 03:03:29 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 1e2977256cead2a12189687c568daf7b55830561 (patch) | |
tree | 626604f36312b5ff3edfb15bb7cc249a61b57de0 /app/controllers/api/v1 | |
parent | 89e54748d7e227f0862c9a6a2d87cb8d73783d8a (diff) |
Allow own roars to be included in lists.
Diffstat (limited to 'app/controllers/api/v1')
-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 e5ac45fef..4ff3f8505 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, :replies_policy) + params.permit(:title, :replies_policy, :show_self) end end |