a11yist/app/controllers/home_controller.rb

11 lines
159 B
Ruby
Raw Normal View History

2024-07-15 14:31:54 +02:00
# frozen_string_literal: true
class HomeController < ApplicationController
2024-09-05 22:54:38 +02:00
def show
2024-09-22 21:57:05 +02:00
if rodauth.logged_in?
else
render :root
end
2024-09-05 22:54:38 +02:00
end
end