From 581cacf20821e1d6fc5ae65ac5058c52ed98c2a9 Mon Sep 17 00:00:00 2001 From: fosterfarrell9 <28628554+fosterfarrell9@users.noreply.github.com> Date: Sat, 9 Dec 2023 14:20:40 +0100 Subject: [PATCH] remove non existing action from before filter --- app/controllers/clickers_controller.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/controllers/clickers_controller.rb b/app/controllers/clickers_controller.rb index cf7f98890..d15b9098b 100644 --- a/app/controllers/clickers_controller.rb +++ b/app/controllers/clickers_controller.rb @@ -1,12 +1,9 @@ # ClickersController class ClickersController < ApplicationController - # rubocop:todo Rails/LexicallyScopedActionFilter skip_before_action :authenticate_user!, only: [:show, :edit, :open, :close, - :reset, :votes_count, :set_alternatives, :render_clickerizable_actions] - # rubocop:enable Rails/LexicallyScopedActionFilter before_action :set_clicker, except: [:new, :create] authorize_resource except: [:new, :create, :edit, :open, :close, :set_alternatives]