mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
29 lines
440 B
Ruby
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 |