ToolJet/app/controllers/probe_controller.rb
2021-05-23 11:26:32 +05:30

7 lines
156 B
Ruby

class ProbeController < ApplicationController
skip_before_action :authenticate_request
def health_check
render json: { works: 'yeah' }
end
end