1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-08 06:55:21 +02:00

Fix authentication on Dashboard

Signed-off-by: Josh Brown <josh@joossh.com>
This commit is contained in:
Josh Brown 2024-01-03 19:59:14 +00:00 committed by GitHub
parent d297d78d17
commit 707ea1a7b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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