1class PingController < ApplicationController
 
2  skip_before_action :service_unavailable
 
3  skip_before_action :authenticate
 
4
  • Complexity 1 » saikuro
5  def ping
 
6    render text: "PONG"
 
7  end
 
8end