18 lines
261 B
Ruby
18 lines
261 B
Ruby
# frozen_string_literal: true
|
|
|
|
module YiffMedia
|
|
class ApplicationController < ::ApplicationController
|
|
def site_domain
|
|
YiffMediaRoutes::DOMAIN
|
|
end
|
|
|
|
def site_title
|
|
"YiffyAPI"
|
|
end
|
|
|
|
def site_color
|
|
"#222222"
|
|
end
|
|
end
|
|
end
|