10 lines
159 B
Ruby
10 lines
159 B
Ruby
# frozen_string_literal: true
|
|
|
|
class HomeController < ApplicationController
|
|
def show
|
|
if rodauth.logged_in?
|
|
else
|
|
render :root
|
|
end
|
|
end
|
|
end
|