dawarich/app/controllers/api/v1/health_controller.rb

10 lines
179 B
Ruby
Raw Normal View History

2024-09-05 15:16:40 -04:00
# frozen_string_literal: true
class Api::V1::HealthController < ApiController
skip_before_action :authenticate_api_key
def index
render json: { status: 'ok' }
end
end