mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
16 lines
231 B
Ruby
16 lines
231 B
Ruby
module Api
|
|
class ApiDocsController < ApplicationController
|
|
layout 'developer'
|
|
|
|
before_action :authenticate_user!, except: [:index]
|
|
|
|
def index
|
|
end
|
|
|
|
def applications
|
|
end
|
|
|
|
def references
|
|
end
|
|
end
|
|
end |