From 011ec6ba10cd8c382731f69ec404712ffe4dd6c5 Mon Sep 17 00:00:00 2001 From: Ian MacFarland Date: Thu, 20 May 2021 12:59:51 -0700 Subject: [PATCH] add PA localities to config --- .../src/contentApi/sources/us_pa.ts | 44 ++++++++++++++++++- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/spotlight-client/src/contentApi/sources/us_pa.ts b/spotlight-client/src/contentApi/sources/us_pa.ts index 84e22a42..559e1295 100644 --- a/spotlight-client/src/contentApi/sources/us_pa.ts +++ b/spotlight-client/src/contentApi/sources/us_pa.ts @@ -488,11 +488,51 @@ const content: TenantContent = { localities: { Prison: { label: "Facility", - entries: [{ id: "ALL", label: "All Facilities" }], + entries: [ + { id: "ALL", label: "All Facilities" }, + { id: "ALB", label: "Albion" }, + { id: "BEN", label: "Benner Township" }, + { id: "CBS", label: "Cambridge Springs" }, + { id: "CAM", label: "Camp Hill" }, + { id: "CHS", label: "Chester" }, + { id: "COA", label: "Coal Township" }, + { id: "DAL", label: "Dallas" }, + { id: "FYT", label: "Fayette" }, + { id: "FRS", label: "Forest" }, + { id: "FRA", label: "Frackville" }, + { id: "GRN", label: "Greene" }, + { id: "HOU", label: "Houtzdale" }, + { id: "HUN", label: "Huntingdon" }, + { id: "LAU", label: "Laurel Highlands" }, + { id: "MAH", label: "Mahanoy" }, + { id: "MER", label: "Mercer" }, + { id: "MUN", label: "Muncy" }, + { id: "PHX", label: "Phoenix East & West" }, + { id: "PNG", label: "Pine Grove" }, + { id: "QUE", label: "Quehanna Boot Camp" }, + { id: "ROC", label: "Rockview" }, + { id: "SMI", label: "Smithfield" }, + { id: "WAM", label: "Waymart" }, + { id: "CCC", label: "Community Correction Centers" }, + { id: "OTHER", label: "Other Facilities" }, + ], }, Parole: { label: "Office", - entries: [{ label: "All Offices", id: "ALL" }], + entries: [ + { id: "ALL", label: "All Offices" }, + { id: "07", label: "Allentown" }, + { id: "09", label: "Altoona" }, + { id: "CO", label: "Central Office" }, + { id: "10", label: "Chester" }, + { id: "06", label: "Erie" }, + { id: "03", label: "Harrisburg" }, + { id: "08", label: "Mercer" }, + { id: "01", label: "Philadelphia" }, + { id: "02", label: "Pittsburgh" }, + { id: "04", label: "Scranton" }, + { id: "05", label: "Williamsport" }, + ], }, }, };