Websites/app/controllers/furry_cool/home_controller.rb

17 lines
262 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
module FurryCool
class HomeController < FurryCool::ApplicationController
include ::ApplicationController::CommonAssetRoutes
def index
end
private
def site_title
"Donovan_DMC - Info"
end
end
end