Websites/app/controllers/maid_gay/home_controller.rb

20 lines
281 B
Ruby
Raw Normal View History

2024-05-02 22:04:43 -05:00
# frozen_string_literal: true
2024-07-25 01:44:22 -05:00
module MaidGay
class HomeController < MaidGay::ApplicationController
2024-05-02 22:04:43 -05:00
include ::ApplicationController::CommonAssetRoutes
def index
end
def privacy
end
private
def site_title
"Maid Boye - Home"
end
end
end