mirror of
https://github.com/System-End/identity-vault.git
synced 2026-04-19 22:05:07 +00:00
13 lines
253 B
Ruby
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
|