mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-15 13:09:25 +00:00
7 lines
156 B
Ruby
7 lines
156 B
Ruby
class ProbeController < ApplicationController
|
|
skip_before_action :authenticate_request
|
|
|
|
def health_check
|
|
render json: { works: 'yeah' }
|
|
end
|
|
end
|