notebook/app/controllers/api/api_docs_controller.rb
2020-02-21 19:22:13 -06:00

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