20 lines
456 B
Ruby
20 lines
456 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ButtsAreCool
|
|
class CocksController < ButtsAreCool::ApplicationController
|
|
include ::ApplicationController::CommonAssetRoutes
|
|
|
|
def index
|
|
render("butts_are_cool/home/custom", locals: { type: "cocks", post_id: "2442378", file_ext: "jpg" })
|
|
end
|
|
|
|
def assets_path
|
|
"#{ButtsAreCoolRoutes::DOMAIN}/custom/cocks"
|
|
end
|
|
|
|
def site_domain
|
|
ButtsAreCoolRoutes::COCKS_DOMAIN
|
|
end
|
|
end
|
|
end
|