18F/identity-idp

View on GitHub
app/services/funnel/registration/total_registered_count.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module Funnel
  module Registration
    class TotalRegisteredCount
      def self.call
        RegistrationLog.where.not(registered_at: nil).count
      end
    end
  end
end