dawarich/app/controllers/api/v1/health_controller.rb
2025-08-11 00:21:58 +02:00

9 lines
179 B
Ruby

# frozen_string_literal: true
class Api::V1::HealthController < ApiController
skip_before_action :authenticate_api_key
def index
render json: { status: 'ok' }
end
end