20 lines
281 B
Ruby
20 lines
281 B
Ruby
# frozen_string_literal: true
|
|
|
|
module MaidGay
|
|
class HomeController < MaidGay::ApplicationController
|
|
include ::ApplicationController::CommonAssetRoutes
|
|
|
|
def index
|
|
end
|
|
|
|
def privacy
|
|
end
|
|
|
|
private
|
|
|
|
def site_title
|
|
"Maid Boye - Home"
|
|
end
|
|
end
|
|
end
|