Updated

app/controllers / ping_controller.rb

A
8 lines of codes
1 methods
1.0 complexity/method
2 churn
1.0 complexity
0 duplications
class PingController < ApplicationController
  1. PingController has no descriptive comment
skip_before_action :service_unavailable skip_before_action :authenticate def ping render text: "PONG" end end