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
Binary file removed app/assets/images/idv/bar_code.png
Binary file not shown.
1 change: 0 additions & 1 deletion app/assets/stylesheets/components/_color.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@media #{$breakpoint-sm} {
.sm-white { color: $white; }
.accent-blue { color: $blue; }
}
19 changes: 0 additions & 19 deletions app/controllers/idv/in_person_controller.rb

This file was deleted.

1 change: 0 additions & 1 deletion app/models/profile.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ class Profile < ApplicationRecord
encryption_error: 2,
verification_pending: 3,
verification_cancelled: 4,
in_person_pending: 5,
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should leave this just in case there is existing data out there, maybe rename it to _deprecated or something? But the risk of a collision when we do have a new event 5 make me hesitate

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should leave this just in case there is existing data out there, maybe rename it to _deprecated or something? But the risk of a collision when we do have a new event 5 make me hesitate

Yeah, we could. But since this was never enabled, maybe we could just confirm there's no instances of it in deployed environments, then be okay to just remove it altogether?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like prod, staging and int are clear:

Profile.where(deactivation_reason: :in_person_pending).first
# nil

and to check that the syntax/encoding was correct, this returned results:

Profile.where(deactivation_reason: :password_reset).first

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I checked dev as well, nothing there either.

I assume we're good to remove it outright?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, should be good to remove

}

attr_reader :personal_key
Expand Down
1 change: 0 additions & 1 deletion app/services/analytics.rb
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,6 @@ def browser_attributes
IDV_GPO_ADDRESS_VISITED = 'IdV: USPS address visited'.freeze
IDV_VERIFICATION_ATTEMPT_CANCELLED = 'IdV: verification attempt cancelled'.freeze
INVALID_AUTHENTICITY_TOKEN = 'Invalid Authenticity Token'.freeze
IN_PERSON_PROOFING = 'In Person Proofing'.freeze # visited or submitted is appended
LAMBDA_RESULT_RESOLUTION_PROOF_RESULT = 'Lambda Resolution Proof Result Received'.freeze
LAMBDA_RESULT_ADDRESS_PROOF_RESULT = 'Lambda Address Proof Result Received'.freeze
LAMBDA_RESULT_DOCUMENT_PROOF_RESULT = 'Lambda Document Proof Result Received'.freeze
Expand Down
9 changes: 0 additions & 9 deletions app/services/idv/actions/redo_enter_info_action.rb

This file was deleted.

30 changes: 0 additions & 30 deletions app/services/idv/flows/in_person_flow.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/bar_code_step.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/encrypt_step.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/enter_info_step.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/find_usps_step.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/usps_list_step.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/verify_step.rb

This file was deleted.

9 changes: 0 additions & 9 deletions app/services/idv/steps/ipp/welcome_step.rb

This file was deleted.

1 change: 0 additions & 1 deletion app/views/idv/doc_auth/_error_messages.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@
class: 'margin-bottom-4',
} do %>
<%= flow_session[:error_message] %>
<%= render 'idv/doc_auth/in_person_proofing_option' %>
<% end %>
<% end %>
4 changes: 0 additions & 4 deletions app/views/idv/doc_auth/_in_person_proofing_option.html.erb

This file was deleted.

4 changes: 0 additions & 4 deletions app/views/idv/in_person/_start_over_or_cancel.html.erb

This file was deleted.

70 changes: 0 additions & 70 deletions app/views/idv/in_person/bar_code.html.erb

This file was deleted.

33 changes: 0 additions & 33 deletions app/views/idv/in_person/encrypt.html.erb

This file was deleted.

Loading