app/controllers/zuora_connect/application_controller.rb
module ZuoraConnect class ApplicationController < ActionController::Base protect_from_forgery with: :exception before_filter :authenticate_request, :except => [:health] def health render json: { message: "Alive", status: 200 }, status: 200 end end end