Soc/app/controllers/home_pages_controller.rb

8 lines
139 B
Ruby
Raw Normal View History

2023-08-20 11:49:21 +00:00
# frozen_string_literal: true
class HomePagesController < ApplicationController
skip_before_action :require_login
2023-08-20 11:49:21 +00:00
def index; end
end