notebook/app/controllers/api/api_docs_controller.rb
2020-02-21 22:12:00 -06:00

25 lines
351 B
Ruby

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