Files
vms/app/controllers/home_controller.rb
David Böhm abe9267893
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
Modified authentication with user_signed_in? and current_user
2024-08-25 01:20:55 +02:00

6 lines
102 B
Ruby

class HomeController < ApplicationController
skip_before_action :authenticate
def index
end
end