Skip to content

Commit

Permalink
Adding Rejane to Service Alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
cityofcapetown-opm-bot committed Dec 6, 2024
1 parent 9b0ebf2 commit cd66ea1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/cct_connector/ServiceAlertEmailer.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]"),),
Expand Down

0 comments on commit cd66ea1

Please sign in to comment.