highway/app/controllers/landing_controller.rb
2025-05-07 22:04:48 -04:00

5 lines
No EOL
113 B
Ruby

class LandingController < ApplicationController
def index
@authenticated = current_user.present?
end
end