grantcallendar/app/controllers/welcome_controller.rb

6 lines
106 B
Ruby

class WelcomeController < ApplicationController
before_action :authenticate_user!
def index
end
end