notebook/app/controllers/api/api_docs_controller.rb
2020-02-21 16:58:35 -06:00

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