diff --git a/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.spec.tsx b/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.spec.tsx index 8baea2980f6..b6c69a08518 100644 --- a/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.spec.tsx +++ b/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.spec.tsx @@ -49,7 +49,7 @@ describe('DocumentCaptureTroubleshootingOptions', () => { 'idv.troubleshooting.options.supported_documentslinks.new_tab', ); expect(links[1].getAttribute('href')).to.equal( - 'https://example.com/redirect/?category=verify-your-identity&article=accepted-state-issued-identification&location=document_capture_troubleshooting_options', + 'https://example.com/redirect/?category=verify-your-identity&article=accepted-identification-documents&location=document_capture_troubleshooting_options', ); expect(links[1].target).to.equal('_blank'); }); diff --git a/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.tsx b/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.tsx index b5bbba9f5aa..9e7530d009a 100644 --- a/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.tsx +++ b/app/javascript/packages/document-capture/components/document-capture-troubleshooting-options.tsx @@ -57,7 +57,7 @@ function DocumentCaptureTroubleshootingOptions({ showDocumentTips && { url: getHelpCenterURL({ category: 'verify-your-identity', - article: 'accepted-state-issued-identification', + article: 'accepted-identification-documents', location, }), text: t('idv.troubleshooting.options.supported_documents'), diff --git a/app/services/marketing_site.rb b/app/services/marketing_site.rb index 08ad301235c..4b67f6f62ab 100644 --- a/app/services/marketing_site.rb +++ b/app/services/marketing_site.rb @@ -11,7 +11,6 @@ class UnknownArticleException < StandardError; end manage-your-account/personal-key trouble-signing-in/face-or-touch-unlock verify-your-identity/accepted-identification-documents - verify-your-identity/accepted-state-issued-identification verify-your-identity/how-to-add-images-of-your-state-issued-id verify-your-identity/verify-your-identity-in-person verify-your-identity/phone-number diff --git a/app/views/idv/in_person/state_id.html.erb b/app/views/idv/in_person/state_id.html.erb index 0e738146466..8595c0e77b8 100644 --- a/app/views/idv/in_person/state_id.html.erb +++ b/app/views/idv/in_person/state_id.html.erb @@ -28,7 +28,7 @@ <%= link_to( MarketingSite.help_center_article_url( category: 'verify-your-identity', - article: 'accepted-state-issued-identification', + article: 'accepted-identification-documents', ), class: 'display-inline', ) do %> diff --git a/spec/controllers/redirect/help_center_controller_spec.rb b/spec/controllers/redirect/help_center_controller_spec.rb index 86cb32cde18..beae74ff5cc 100644 --- a/spec/controllers/redirect/help_center_controller_spec.rb +++ b/spec/controllers/redirect/help_center_controller_spec.rb @@ -27,7 +27,7 @@ context 'with valid help center article' do let(:category) { 'verify-your-identity' } - let(:article) { 'accepted-state-issued-identification' } + let(:article) { 'accepted-identification-documents' } let(:params) { super().merge(category:, article:) } it 'redirects to the help center article and logs' do diff --git a/spec/services/marketing_site_spec.rb b/spec/services/marketing_site_spec.rb index a49dd628769..c2d6bbdd8d7 100644 --- a/spec/services/marketing_site_spec.rb +++ b/spec/services/marketing_site_spec.rb @@ -170,20 +170,20 @@ context 'with valid article' do let(:category) { 'verify-your-identity' } - let(:article) { 'accepted-state-issued-identification' } + let(:article) { 'accepted-identification-documents' } it_behaves_like 'a marketing site URL' it 'returns article URL' do expect(url).to eq( - 'https://www.login.gov/help/verify-your-identity/accepted-state-issued-identification/', + 'https://www.login.gov/help/verify-your-identity/accepted-identification-documents/', ) end end context 'with anchor' do let(:category) { 'verify-your-identity' } - let(:article) { 'accepted-state-issued-identification' } + let(:article) { 'accepted-identification-documents' } let(:article_anchor) { 'test-anchor-url' } let(:url) do MarketingSite.help_center_article_url(category:, article:, article_anchor:) @@ -193,7 +193,7 @@ it 'returns article URL' do expect(url).to eq( - 'https://www.login.gov/help/verify-your-identity/accepted-state-issued-identification/#test-anchor-url', + 'https://www.login.gov/help/verify-your-identity/accepted-identification-documents/#test-anchor-url', ) end end @@ -213,7 +213,7 @@ context 'with valid article' do let(:category) { 'verify-your-identity' } - let(:article) { 'accepted-state-issued-identification' } + let(:article) { 'accepted-identification-documents' } it { expect(result).to eq(true) }