a11yist/app/controllers/home_controller.rb
2024-09-22 21:57:05 +02:00

10 lines
159 B
Ruby

# frozen_string_literal: true
class HomeController < ApplicationController
def show
if rodauth.logged_in?
else
render :root
end
end
end