18F/identity-idp

View on GitHub
app/services/push_notification/local_event_queue.rb

Summary

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

module PushNotification
  class LocalEventQueue
    class << self
      def events
        @events ||= []
      end

      def clear!
        @events = []
      end
    end
  end
end