diff --git a/app/main/views/index.py b/app/main/views/index.py index b45c699e7..466a2dea5 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -309,14 +309,12 @@ def studio(): # --- Redirects --- # -@main.route("/roadmap", endpoint="old_roadmap") @main.route("/information-security", endpoint="information_security") @main.route("/using_notify", endpoint="old_using_notify") @main.route("/information-risk-management", endpoint="information_risk_management") @main.route("/integration_testing", endpoint="old_integration_testing") def old_page_redirects(): redirects = { - "main.old_roadmap": "main.roadmap", "main.information_security": "main.using_notify", "main.old_using_notify": "main.using_notify", "main.information_risk_management": "main.security", diff --git a/app/templates/views/roadmap.html b/app/templates/views/roadmap.html deleted file mode 100644 index f9446aad5..000000000 --- a/app/templates/views/roadmap.html +++ /dev/null @@ -1,87 +0,0 @@ -{% extends "base.html" %} -{% from "components/table.html" import mapping_table, row, text_field, edit_field, field with context %} -{% from "components/content-metadata.html" import content_metadata %} - -{% block per_page_title %} - Roadmap -{% endblock %} - -{% block content_column_content %} - -

Roadmap

- - - - -

The Notify roadmap shows what we’re working on and what we're planning to do next.

-

This roadmap is only a guide. It does not cover everything we do, and some things may change.

-

You can contact us if you have any questions about the roadmap or suggestions for new features.

- -

What we’re working on

- -

Now

- -

We are investigating the Notify concept, building on the notifications tool pioneered by the UK.

-

To do this, we are convening a pilot with a small set of partners.

-

Goals during this stage:

- - - -

Features prioritized during this stage:

- - - -

Next

- -

If the pilot is successful, we hope to recruit additional partners to improve outcomes for low-income individuals and families.

- -

Goals during this stage:

- - - -

Features prioritized during this stage:

- - - -

Later

- -

In the future, we may decide to expand beyond SMS, or to offer the service government-wide.

- -

Features to be considered during this stage:

- - - -{% endblock %} diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index cfc3c73b5..e11b70762 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -139,9 +139,7 @@ EXCLUDED_ENDPOINTS = tuple( "notifications_sent_by_service", "old_guest_list", "old_integration_testing", - "old_roadmap", "old_service_dashboard", - "old_using_notify", "organization_billing", "organization_dashboard", "organization_settings", @@ -168,7 +166,6 @@ EXCLUDED_ENDPOINTS = tuple( "resume_service", "revalidate_email_sent", "revoke_api_key", - "roadmap", "rules_and_regulations", "security", "security_policy",