Skip to content

Commit

Permalink
remove non existing action from before filter
Browse files Browse the repository at this point in the history
  • Loading branch information
fosterfarrell9 committed Dec 9, 2023
1 parent 0560c5e commit 581cacf
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/controllers/clickers_controller.rb
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 581cacf

Please sign in to comment.