20 lines
464 B
Ruby
20 lines
464 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ButtsAreCool
|
|
class SheathsController < ButtsAreCool::ApplicationController
|
|
include ::ApplicationController::CommonAssetRoutes
|
|
|
|
def index
|
|
render("butts_are_cool/home/custom", locals: { type: "sheaths", post_id: "2670356", file_ext: "png" })
|
|
end
|
|
|
|
def assets_path
|
|
"#{ButtsAreCoolRoutes::DOMAIN}/custom/sheaths"
|
|
end
|
|
|
|
def site_domain
|
|
ButtsAreCoolRoutes::SHEATHS_DOMAIN
|
|
end
|
|
end
|
|
end
|