dawarich/app/controllers/api/v1/stats_controller.rb
2024-08-25 20:19:02 +02:00

7 lines
160 B
Ruby

# frozen_string_literal: true
class Api::V1::StatsController < ApiController
def index
render json: StatsSerializer.new(current_api_user).call
end
end