notebook/app/controllers/api/api_docs_controller.rb
2020-02-21 21:04:29 -06:00

22 lines
313 B
Ruby

module Api
class ApiDocsController < ApplicationController
layout 'developer', except: [:integrations]
before_action :authenticate_user!, except: [:index]
def index
end
def integrations
end
def applications
end
def approvals
end
def references
end
end
end