Websites/app/controllers/maid_gay/application_controller.rb

22 lines
309 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
2024-07-25 06:44:22 +00:00
module MaidGay
2024-05-03 03:04:43 +00:00
class ApplicationController < ::ApplicationController
def site_domain
2024-07-25 06:44:22 +00:00
MaidGayRoutes::DOMAIN
2024-05-03 03:04:43 +00:00
end
2024-07-14 18:48:12 +00:00
def plausible_domain
2024-07-25 06:44:22 +00:00
"maid.gay"
2024-07-14 18:48:12 +00:00
end
2024-05-03 03:04:43 +00:00
def site_title
"Maid Boye"
end
def site_color
"#A7A4AA"
end
end
end