dawarich/app/controllers/api/v1/points/tracked_months_controller.rb
2024-12-11 20:34:49 +01:00

7 lines
164 B
Ruby

# frozen_string_literal: true
class Api::V1::Points::TrackedMonthsController < ApiController
def index
render json: current_api_user.years_tracked
end
end