about summary refs log tree commit diff
path: root/app/controllers/api/v1/lists_controller.rb
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2019-04-28 03:03:29 -0500
committermultiple creatures <dev@multiple-creature.party>2019-05-21 03:16:22 -0500
commit1e2977256cead2a12189687c568daf7b55830561 (patch)
tree626604f36312b5ff3edfb15bb7cc249a61b57de0 /app/controllers/api/v1/lists_controller.rb
parent89e54748d7e227f0862c9a6a2d87cb8d73783d8a (diff)
Allow own roars to be included in lists.
Diffstat (limited to 'app/controllers/api/v1/lists_controller.rb')
-rw-r--r--app/controllers/api/v1/lists_controller.rb2
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