jcraigk/kudochest

View on GitHub
app/controllers/ops_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class OpsController < ApplicationController
  skip_before_action :verify_authenticity_token
  skip_before_action :require_login

  def healthz
    render plain: 'OK'
  end
end