extinctionrebellion/RebelsManager

View on GitHub
app/controllers/api/private/stats_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Api
  module Private
    class StatsController < BaseController
      def show
        render json: { total: Rebel.count }
      end
    end
  end
end