Websites/app/controllers/butts_are_cool/knots_controller.rb

20 lines
456 B
Ruby
Raw Normal View History

2024-05-03 03:04:43 +00:00
# frozen_string_literal: true
module ButtsAreCool
class KnotsController < ButtsAreCool::ApplicationController
include ::ApplicationController::CommonAssetRoutes
def index
render("butts_are_cool/home/custom", locals: { type: "knots", post_id: "2535662", file_ext: "jpg" })
end
def assets_path
"#{ButtsAreCoolRoutes::DOMAIN}/custom/knots"
end
def site_domain
ButtsAreCoolRoutes::KNOTS_DOMAIN
end
end
end