app/controllers/healthcheck_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class HealthcheckController < ApiController
  skip_before_action :authenticate_user_from_api_key!

  def index
    head 200
  end
end