identity-vault/app/controllers/static_pages_controller.rb
2025-09-02 13:53:47 -04:00

13 lines
253 B
Ruby

class StaticPagesController < ApplicationController
skip_before_action :authenticate_identity!, only: [ :faq, :external_api_docs ]
def index
end
def faq
end
def external_api_docs
render :external_api_docs, layout: "backend"
end
end