-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b0ebf2
commit cd66ea1
Showing
1 changed file
with
12 additions
and
0 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 |
---|---|---|
|
@@ -623,6 +623,18 @@ def _service_area_filter(row: pandas.Series) -> bool: | |
"all planned works that might affect Ward 116", | ||
_ward_curry_pot("116")), | ||
|
||
# Grassy Park | ||
ServiceAlertEmailConfig("current", False, "v1", EMAIL_COLS, | ||
(("Rejane", "[email protected]"),), | ||
"all unplanned alerts that affect Grassy Park", | ||
"(inferred_suburbs.astype('str').str.lower().str.contains('grassy\Wpark') or " | ||
" area.astype('str').str.lower().str.contains('grassy\Wpark'))"), | ||
ServiceAlertEmailConfig("current", True, "v1", EMAIL_COLS, | ||
(("Rejane", "[email protected]"),), | ||
"all planned works that affect Grassy Park", | ||
"(inferred_suburbs.astype('str').str.lower().str.contains('grassy\Wpark') or " | ||
" area.astype('str').str.lower().str.contains('grassy\Wpark'))"), | ||
|
||
# Somerset West | ||
ServiceAlertEmailConfig("current", False, "v1", EMAIL_COLS, | ||
(("Delyno", "[email protected]"),), | ||
|