Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 0 additions & 68 deletions app/controllers/idv/in_person/address_search_controller.rb

This file was deleted.

33 changes: 0 additions & 33 deletions app/controllers/idv/in_person/public/address_search_controller.rb

This file was deleted.

2 changes: 1 addition & 1 deletion app/javascript/packages/address-search/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `@18f/identity-address-search`

This is a npm module that provides a React UI component to search for USPS (United States Postal Service) locations using the ArcGIS API. It allows you to retrieve USPS location information based on a full address.
This is a npm module that provides a React UI component to search for USPS (United States Postal Service) locations. It allows you to retrieve USPS location information based on a full address.

Additionally, this module depends on existing backend services from the Login.gov project. Make sure to have the required backend services or mock services set up and running before using this module.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default function useUspsLocations({
setAddressQuery(unvalidatedAddressInput);
}, []);

// sends the raw text query to arcgis
// sends the raw text query for geocoding
const {
data: addressCandidates,
isLoading: isLoadingCandidates,
Expand Down
31 changes: 0 additions & 31 deletions app/jobs/arcgis_token_job.rb

This file was deleted.

41 changes: 0 additions & 41 deletions app/services/analytics_events.rb
Original file line number Diff line number Diff line change
Expand Up @@ -559,47 +559,6 @@ def idv_address_visit
track_event('IdV: address visited')
end

# Tracks if request to get address candidates from ArcGIS fails
# @param [String] exception_class
# @param [String] exception_message
# @param [Boolean] response_body_present
# @param [Hash] response_body
# @param [Integer] response_status_code
def idv_arcgis_request_failure(
exception_class:,
exception_message:,
response_body_present:,
response_body:,
response_status_code:,
**extra
)
track_event(
'Request ArcGIS Address Candidates: request failed',
exception_class: exception_class,
exception_message: exception_message,
response_body_present: response_body_present,
response_body: response_body,
response_status_code: response_status_code,
**extra,
)
end

# Track when ArcGIS auth token refresh job completed
def idv_arcgis_token_job_completed(**extra)
track_event(
'ArcgisTokenJob: Completed',
**extra,
)
end

# Track when ArcGIS auth token refresh job started
def idv_arcgis_token_job_started(**extra)
track_event(
'ArcgisTokenJob: Started',
**extra,
)
end

# @param [String] step the step that the user was on when they clicked cancel
# @param [Idv::ProofingComponentsLogging] proofing_components User's current proofing components
# The user confirmed their choice to cancel going through IDV
Expand Down
189 changes: 0 additions & 189 deletions app/services/arcgis_api/geocoder.rb

This file was deleted.

Loading