17 lines
262 B
Ruby
17 lines
262 B
Ruby
# frozen_string_literal: true
|
|
|
|
module YiffMedia
|
|
class HomeController < YiffMedia::ApplicationController
|
|
include ::ApplicationController::CommonAssetRoutes
|
|
|
|
def index
|
|
end
|
|
|
|
private
|
|
|
|
def site_title
|
|
"Yiffy Media - Home"
|
|
end
|
|
end
|
|
end
|