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

8 lines
160 B
Ruby
Raw Normal View History

2024-08-20 14:14:17 -04:00
# frozen_string_literal: true
2024-08-25 14:19:02 -04:00
class Api::V1::StatsController < ApiController
2024-08-20 14:14:17 -04:00
def index
render json: StatsSerializer.new(current_api_user).call
end
end