2024-05-02 22:04:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module OceanicWs
|
|
|
|
class ApplicationController < ::ApplicationController
|
|
|
|
def site_domain
|
|
|
|
OceanicWsRoutes::DOMAIN
|
|
|
|
end
|
|
|
|
|
2024-07-14 13:48:12 -05:00
|
|
|
def plausible_domain
|
|
|
|
"oceanic.ws"
|
|
|
|
end
|
|
|
|
|
2024-05-02 22:04:43 -05:00
|
|
|
def site_title
|
|
|
|
"Oceanic"
|
|
|
|
end
|
|
|
|
|
|
|
|
def site_color
|
|
|
|
"#2E9DD7"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|