18 lines
260 B
Ruby
18 lines
260 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module OceanicWs
|
||
|
class ApplicationController < ::ApplicationController
|
||
|
def site_domain
|
||
|
OceanicWsRoutes::DOMAIN
|
||
|
end
|
||
|
|
||
|
def site_title
|
||
|
"Oceanic"
|
||
|
end
|
||
|
|
||
|
def site_color
|
||
|
"#2E9DD7"
|
||
|
end
|
||
|
end
|
||
|
end
|