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