-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-62' into ea/qualified-opportunities-fix
- Loading branch information
Showing
106 changed files
with
3,325 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
ignore: | ||
- CVE-2019-16676 | ||
- CVE-2017-1002201 | ||
- CVE-2024-26143 | ||
- CVE-2024-6531 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -877,4 +877,4 @@ DEPENDENCIES | |
yabeda-rails | ||
|
||
BUNDLED WITH | ||
2.4.13 | ||
2.5.17 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
### | ||
# Copyright 2016 - 2024 Green River Data Analysis, LLC | ||
# | ||
# License detail: https://github.com/greenriver/boston-cas/blob/production/LICENSE.md | ||
### | ||
|
||
module RouteThirteenMailerMethods | ||
extend ActiveSupport::Concern | ||
included do | ||
def thirteen_client_match(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'New Housing Recommendation - Requires Your Action') | ||
end | ||
|
||
def thirteen_match_acknowledgement_shelter_agency(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'New Housing Recommendation - Requires Your Action') | ||
end | ||
|
||
def thirteen_match_acknowledgement_hsa(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'New Housing Recommendation') | ||
end | ||
|
||
def thirteen_client_review_shelter_agency(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'Match Acknowledged - Requires Your Action') | ||
end | ||
|
||
def thirteen_client_review_hsa(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'Match Acknowledged') | ||
end | ||
|
||
def thirteen_client_review_dnd_staff(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'Match Acknowledged') | ||
end | ||
|
||
def thirteen_client_review_decline(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Declined by #{Translation.translate('Shelter Agency Thirteen')} - Requires Your Action") | ||
end | ||
|
||
def thirteen_hearing_scheduled_shelter_agency(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Accepted by #{Translation.translate('Shelter Agency Thirteen')}") | ||
end | ||
|
||
def thirteen_hearing_scheduled_hsa(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Accepted by #{Translation.translate('Shelter Agency Thirteen')} - Requires Your Action") | ||
end | ||
|
||
def thirteen_hearing_scheduled_dnd_staff(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Accepted by #{Translation.translate('Shelter Agency Thirteen')}") | ||
end | ||
|
||
def thirteen_hearing_scheduled_decline(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Declined by #{Translation.translate('HSA Thirteen')} - Requires Your Action") | ||
end | ||
|
||
def thirteen_hearing_outcome_shelter_agency(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Review Scheduled by #{Translation.translate('HSA Thirteen')}") | ||
end | ||
|
||
def thirteen_hearing_outcome_hsa(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Review Scheduled by #{Translation.translate('HSA Thirteen')} - Requires Your Action") | ||
end | ||
|
||
def thirteen_hearing_outcome_dnd_staff(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Review Scheduled by #{Translation.translate('HSA Thirteen')}") | ||
end | ||
|
||
def thirteen_hearing_outcome_decline(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Declined by #{Translation.translate('HSA Thirteen')} - Requires Your Action") | ||
end | ||
|
||
def thirteen_hsa_review_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) | ||
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_dnd_staff(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_decline(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Declined by #{Translation.translate('HSA Thirteen')} - Requires Your Action") | ||
end | ||
|
||
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_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_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_accept_referral_hsp(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Ready for Review by #{Translation.translate('HSA Thirteen')}") | ||
end | ||
|
||
def thirteen_accept_referral_decline(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: "Match Declined by #{Translation.translate('HSA Thirteen')} - Requires Your Action") | ||
end | ||
|
||
def thirteen_confirm_match_success_shelter_agency(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'Match Success Confirmed') | ||
end | ||
|
||
def thirteen_confirm_match_success_hsa(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'Match Success Confirmed') | ||
end | ||
|
||
def thirteen_confirm_match_success_dnd_staff(notification = nil) | ||
setup_instance_variables(notification) | ||
mail(to: @contact.email, subject: 'Match Success Confirmed') | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.