Files
vms/app/controllers/home_controller.rb
David Böhm 0919a26686
Some checks failed
CI / scan_ruby (push) Has been cancelled
CI / scan_js (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / test (push) Has been cancelled
Changed authorize to authorize_user!
2024-08-25 21:26:35 +02:00

6 lines
108 B
Ruby

class HomeController < ApplicationController
skip_before_action :authenticate_user!
def index
end
end