Soc/app/controllers/home_pages_controller.rb

8 lines
139 B
Ruby

# frozen_string_literal: true
class HomePagesController < ApplicationController
skip_before_action :require_login
def index; end
end