mirror of
https://github.com/Freika/dawarich.git
synced 2026-01-10 17:21:38 -05:00
9 lines
179 B
Ruby
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
|