notebook/app/controllers/api/api_docs_controller.rb
2020-03-02 16:22:38 -06:00

29 lines
440 B
Ruby

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