ToolJet/app/controllers/probe_controller.rb
Unnikrishnan KP ccadcb2e9d
Rubocop fixes for controllers (#180)
* Improves ruby code in app/models/app_user.rb based on suggestions from Rubocop

* Rubocop fixes for more models

* Rubocop fixes for controllers
2021-06-01 12:39:07 +05:30

9 lines
185 B
Ruby

# frozen_string_literal: true
class ProbeController < ApplicationController
skip_before_action :authenticate_request
def health_check
render json: { works: "yeah" }
end
end