18 lines
268 B
Ruby
18 lines
268 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module MaidboyeCafe
|
||
|
class ApplicationController < ::ApplicationController
|
||
|
def site_domain
|
||
|
MaidboyeCafeRoutes::DOMAIN
|
||
|
end
|
||
|
|
||
|
def site_title
|
||
|
"Maid Boye"
|
||
|
end
|
||
|
|
||
|
def site_color
|
||
|
"#A7A4AA"
|
||
|
end
|
||
|
end
|
||
|
end
|