26 lines
357 B
Ruby
26 lines
357 B
Ruby
# frozen_string_literal: true
|
|
|
|
module E621Ws
|
|
class ApplicationController < ::ApplicationController
|
|
def site_domain
|
|
E621WsRoutes::DOMAIN
|
|
end
|
|
|
|
def plausible_domain
|
|
"e621.ws"
|
|
end
|
|
|
|
def assets_path
|
|
E621WsRoutes::DOMAIN
|
|
end
|
|
|
|
def site_title
|
|
"E621"
|
|
end
|
|
|
|
def site_color
|
|
"#012E56"
|
|
end
|
|
end
|
|
end
|