From 1e2977256cead2a12189687c568daf7b55830561 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Sun, 28 Apr 2019 03:03:29 -0500 Subject: Allow own roars to be included in lists. --- app/controllers/api/v1/lists_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/controllers') 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 -- cgit