17 lines
262 B
Ruby
17 lines
262 B
Ruby
# 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
|