ministryofjustice/peoplefinder

View on GitHub
app/controllers/ping_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
class PingController < ActionController::Base # rubocop:disable Rails/ApplicationController
  protect_from_forgery with: :exception

  def index
    render json: Deployment.info
  end
end