rails_template/app/controllers/home_controller.rb

10 lines
135 B
Ruby

# frozen_string_literal: true
class HomeController < ApplicationController
def index; end
def privacy; end
def terms; end
end