Websites/app/controllers/maid_gay/application_controller.rb

22 lines
309 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
2024-05-02 22:04:43 -05:00
class ApplicationController < ::ApplicationController
def site_domain
2024-07-25 01:44:22 -05:00
MaidGayRoutes::DOMAIN
2024-05-02 22:04:43 -05:00
end
2024-07-14 13:48:12 -05:00
def plausible_domain
2024-07-25 01:44:22 -05:00
"maid.gay"
2024-07-14 13:48:12 -05:00
end
2024-05-02 22:04:43 -05:00
def site_title
"Maid Boye"
end
def site_color
"#A7A4AA"
end
end
end