2024-05-02 22:04:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module E621Ws
|
|
|
|
class ApplicationController < ::ApplicationController
|
|
|
|
def site_domain
|
|
|
|
E621WsRoutes::DOMAIN
|
|
|
|
end
|
|
|
|
|
2024-07-14 13:48:12 -05:00
|
|
|
def plausible_domain
|
|
|
|
"e621.ws"
|
|
|
|
end
|
|
|
|
|
2024-06-04 14:48:30 -05:00
|
|
|
def assets_path
|
2024-05-02 22:04:43 -05:00
|
|
|
E621WsRoutes::DOMAIN
|
|
|
|
end
|
|
|
|
|
|
|
|
def site_title
|
|
|
|
"E621"
|
|
|
|
end
|
|
|
|
|
|
|
|
def site_color
|
|
|
|
"#012E56"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|