Websites/app/controllers/maidboye_cafe/home_controller.rb
2024-05-02 22:04:43 -05:00

20 lines
291 B
Ruby

# frozen_string_literal: true
module MaidboyeCafe
class HomeController < MaidboyeCafe::ApplicationController
include ::ApplicationController::CommonAssetRoutes
def index
end
def privacy
end
private
def site_title
"Maid Boye - Home"
end
end
end