Skip to content

Instantly share code, notes, and snippets.

@tasdikrahman
Last active July 9, 2020 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tasdikrahman/4d2243d62d0a74c0729b739d0e659f6a to your computer and use it in GitHub Desktop.
Save tasdikrahman/4d2243d62d0a74c0729b739d0e659f6a to your computer and use it in GitHub Desktop.
# app/controllers/health_check_controller.rb
class HealthCheckController < ActionController::Base
def ping
render json: { success: true, errors: nil, data: 'pong' }, status: :ok
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment