diff --git a/app/jobs/reports/identity_verification_report.rb b/app/jobs/reports/identity_verification_report.rb index 8943374b7c8..ed516fd2fe8 100644 --- a/app/jobs/reports/identity_verification_report.rb +++ b/app/jobs/reports/identity_verification_report.rb @@ -16,7 +16,7 @@ def perform(report_date) def report_maker Reporting::IdentityVerificationReport.new( - issuer: nil, + issuers: [], time_range: report_date.all_day, slice: 4.hours, ) diff --git a/lib/reporting/authentication_report.rb b/lib/reporting/authentication_report.rb index 8924c0f9c5e..f13bfc14f0c 100644 --- a/lib/reporting/authentication_report.rb +++ b/lib/reporting/authentication_report.rb @@ -14,7 +14,7 @@ module Reporting class AuthenticationReport include Reporting::CloudwatchQueryQuoting - attr_reader :issuer, :time_range + attr_reader :issuers, :time_range module Events OIDC_AUTH_REQUEST = 'OpenID Connect: authorization request' @@ -28,17 +28,17 @@ def self.all_events end end - # @param [String] isssuer + # @param [Array] issuers # @param [Range