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