diff options
author | David Gay <david@davidgay.org> | 2021-07-08 09:04:55 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-07-08 09:04:55 -0400 |
commit | 1f991995fdaabb8115e68578611df20ffba4bbf9 (patch) | |
tree | 06c65f74398046338e69c83e68ef5a577098c30e /app | |
parent | ad8678409abc4e58db43fe5c3aacb07b40ff265c (diff) |
Allow unauthenticated users to see the game clock
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/clock_controller.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/clock_controller.rb b/app/controllers/clock_controller.rb index 13ae5e2..6f6c0d0 100644 --- a/app/controllers/clock_controller.rb +++ b/app/controllers/clock_controller.rb @@ -1,4 +1,6 @@ class ClockController < ApplicationController + skip_before_action :authenticate_user! + def clock render partial: "clock" end |