class Doorkeeper::AuthorizedApplicationsController

def index

def index
  @applications = Doorkeeper.config.application_model.authorized_for(current_resource_owner)
  respond_to do |format|
    format.html
    format.json { render json: @applications, current_resource_owner: current_resource_owner }
  end
end