summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-07-08 09:04:55 -0400
committerDavid Gay <david@davidgay.org>2021-07-08 09:04:55 -0400
commit1f991995fdaabb8115e68578611df20ffba4bbf9 (patch)
tree06c65f74398046338e69c83e68ef5a577098c30e /app/controllers
parentad8678409abc4e58db43fe5c3aacb07b40ff265c (diff)
Allow unauthenticated users to see the game clock
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/clock_controller.rb2
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