From 707ea1a7b0c4586cd0e9866e900d434a5ee6cfa6 Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Wed, 3 Jan 2024 19:59:14 +0000 Subject: [PATCH] Fix authentication on Dashboard Signed-off-by: Josh Brown --- app/controllers/pages_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb index 47453d8b..b70176f3 100644 --- a/app/controllers/pages_controller.rb +++ b/app/controllers/pages_controller.rb @@ -1,6 +1,6 @@ class PagesController < ApplicationController - before_action :authenticate_user!, only: [:home] + before_action :authenticate_user!, only: [:dashboard] - def home + def dashboard end end