cdn/app/controllers/docs_controller.rb
2026-01-30 13:45:56 -05:00

23 lines
369 B
Ruby

# frozen_string_literal: true
class DocsController < ApplicationController
include HighVoltage::StaticPage
skip_before_action :require_authentication!
before_action :load_docs_navigation
def show
@doc = DocPage.find(params[:id])
end
private
def load_docs_navigation
@docs = DocPage.all
end
def page_finder_factory
DocPage
end
end