ministryofjustice/atet

View on GitHub
app/controllers/stats_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class StatsController < ApplicationController
  respond_to :json

  def index
    respond_with statistics
  end

  private

  def statistics
    {
      started_claims: Stats::ClaimStats.started_count,
      completed_claims: Stats::ClaimStats.completed_count
    }
  end
end