mirror of
https://github.com/SrIzan10/hc-identity-vault.git
synced 2026-05-01 10:45:20 +00:00
14 lines
253 B
Ruby
14 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
|