From 374e294a337537f9979bf1f70337b6c74948ea9e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Wed, 23 Feb 2022 19:22:42 -0800 Subject: [PATCH] Change permitted param for extra toggle --- app/controllers/api/v1/parties_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/api/v1/parties_controller.rb b/app/controllers/api/v1/parties_controller.rb index 77c6f61..d7e37e6 100644 --- a/app/controllers/api/v1/parties_controller.rb +++ b/app/controllers/api/v1/parties_controller.rb @@ -71,6 +71,6 @@ class Api::V1::PartiesController < Api::V1::ApiController end def party_params - params.require(:party).permit(:user_id, :is_extra, :name, :description, :raid_id) + params.require(:party).permit(:user_id, :extra, :name, :description, :raid_id) end end \ No newline at end of file