Websites/app/controllers/oceanic_ws/application_controller.rb

18 lines
260 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# 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