app.kluk.fr/app/controllers/home_controller.rb
Christophe Robillard cbe73af9bf
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
handle public dashboards
2026-02-20 10:30:12 +01:00

14 lines
322 B
Ruby

class HomeController < ApplicationController
allow_unauthenticated_access
def index
user = User.find_by(username: request.subdomain)
if user&.public?
@mode = user.current_mood
@history = user.history
render template: "moods/index"
else
redirect_to dashboard_path
end
end
end