obdev/app/controllers/home_controller.rb

7 lines
106 B
Ruby
Raw Normal View History

2024-01-11 19:40:58 -06:00
class HomeController < ApplicationController
before_action :authenticate_user!
2024-01-11 19:40:58 -06:00
def index
end
end