Skip to content

Commit

Permalink
clean up missing notifications
Browse files Browse the repository at this point in the history
  • Loading branch information
dtgreiner committed Aug 2, 2024
1 parent 2a585de commit fedb9fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/mailers/route_thirteen_mailer_methods.rb
Original file line number Diff line number Diff line change
Expand Up @@ -102,22 +102,22 @@ def thirteen_hsa_review_decline(notification = nil)
mail(to: @contact.email, subject: "Match Declined by #{Translation.translate('HSA Thirteen')} - Requires Your Action")
end

def thirteen_hsa_review_shelter_agency(notification = nil)
def thirteen_accept_referral_shelter_agency(notification = nil)
setup_instance_variables(notification)
mail(to: @contact.email, subject: "Match Ready for Review by #{Translation.translate('HSA Thirteen')}")
end

def thirteen_hsa_review_hsa(notification = nil)
def thirteen_accept_referral_hsa(notification = nil)
setup_instance_variables(notification)
mail(to: @contact.email, subject: "Match Ready for Review by #{Translation.translate('HSA Thirteen')} - Requires Your Action")
end

def thirteen_hsa_review_ssp(notification = nil)
def thirteen_accept_referral_ssp(notification = nil)
setup_instance_variables(notification)
mail(to: @contact.email, subject: "Match Ready for Review by #{Translation.translate('HSA Thirteen')}")
end

def thirteen_hsa_review_hsp(notification = nil)
def thirteen_accept_referral_hsp(notification = nil)
setup_instance_variables(notification)
mail(to: @contact.email, subject: "Match Ready for Review by #{Translation.translate('HSA Thirteen')}")
end
Expand Down

0 comments on commit fedb9fd

Please sign in to comment.