Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 0 additions & 48 deletions app/jobs/reports/irs_weekly_summary_report.rb

This file was deleted.

6 changes: 0 additions & 6 deletions app/mailers/report_mailer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ def deleted_user_accounts_report(email:, name:, issuers:, data:)
mail(to: email, subject: t('report_mailer.deleted_accounts_report.subject'))
end

def system_demand_report(email:, data:, name:)
@name = name
attachments['system_demand.csv'] = data
mail(to: email, subject: t('report_mailer.system_demand_report.subject'))
end

def warn_error(email:, error:, env: Rails.env)
@error = error
mail(to: email, subject: "[#{env}] identity-idp error: #{error.class.name}")
Expand Down
1 change: 0 additions & 1 deletion app/views/report_mailer/system_demand_report.html.erb

This file was deleted.

1 change: 0 additions & 1 deletion config/application.yml.default
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,6 @@ sp_handoff_bounce_max_seconds: 2
show_unsupported_passkey_platform_authentication_setup: false
show_user_attribute_deprecation_warnings: false
otp_min_attempts_remaining_warning_count: 3
system_demand_report_email: 'foo@bar.com'
sp_issuer_user_counts_report_configs: '[]'
team_ada_email: ''
team_all_login_emails: '[]'
Expand Down
6 changes: 0 additions & 6 deletions config/initializers/job_configurations.rb
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,6 @@
class: 'ThreatMetrixJsVerificationJob',
cron: cron_1h,
},
# Weekly IRS report returning system demand
irs_weekly_summary_report: {
class: 'Reports::IrsWeeklySummaryReport',
cron: cron_1w,
args: -> { [Time.zone.now] },
},
# Reject profiles that have been in fraud_review_pending for 30 days
fraud_rejection: {
class: 'FraudRejectionDailyJob',
Expand Down
3 changes: 0 additions & 3 deletions config/locales/report_mailer/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ en:
issuers: Issuers
name: Name
subject: Deleted accounts report
system_demand_report:
name: Name
subject: System demand report
3 changes: 0 additions & 3 deletions config/locales/report_mailer/es.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ es:
issuers: Emisores
name: Nombre
subject: Informe de cuentas eliminadas
system_demand_report:
name: Nombre
subject: Informe de demanda del sistema
3 changes: 0 additions & 3 deletions config/locales/report_mailer/fr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,3 @@ fr:
issuers: Émetteurs
name: Nom
subject: Rapport sur les comptes supprimés
system_demand_report:
name: Nom
subject: Rapport de demande du système
1 change: 0 additions & 1 deletion lib/identity_config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,6 @@ def self.build_store(config_map)
config.add(:sp_handoff_bounce_max_seconds, type: :integer)
config.add(:sp_issuer_user_counts_report_configs, type: :json)
config.add(:state_tracking_enabled, type: :boolean)
config.add(:system_demand_report_email, type: :string)
config.add(:team_ada_email, type: :string)
config.add(:team_all_login_emails, type: :json)
config.add(:team_daily_reports_emails, type: :json)
Expand Down
30 changes: 0 additions & 30 deletions spec/jobs/reports/irs_weekly_summary_report_spec.rb

This file was deleted.