Skip to content

Commit

Permalink
Rename go-live URL and estimate usage URL
Browse files Browse the repository at this point in the history
  • Loading branch information
klssmith committed Dec 16, 2024
1 parent 0f69cde commit 5f96f53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/main/views/service_settings/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def service_data_retention(service_id):
)


@main.route("/services/<uuid:service_id>/service-settings/request-to-go-live/estimate-usage", methods=["GET", "POST"])
@main.route("/services/<uuid:service_id>/get-ready-to-go-live/what-do-you-expect-to-send", methods=["GET", "POST"])
@user_has_permissions("manage_service")
def estimate_usage(service_id):
form = EstimateUsageForm(
Expand Down Expand Up @@ -264,7 +264,7 @@ def estimate_usage(service_id):
)


@main.route("/services/<uuid:service_id>/service-settings/request-to-go-live", methods=["GET"])
@main.route("/services/<uuid:service_id>/get-ready-to-go-live", methods=["GET"])
@user_has_permissions("manage_service")
def request_to_go_live(service_id):
if current_service.live:
Expand All @@ -273,7 +273,7 @@ def request_to_go_live(service_id):
return render_template("views/service-settings/request-to-go-live.html")


@main.route("/services/<uuid:service_id>/service-settings/request-to-go-live", methods=["POST"])
@main.route("/services/<uuid:service_id>/get-ready-to-go-live", methods=["POST"])
@user_has_permissions("manage_service")
@user_is_gov_user
def submit_request_to_go_live(service_id):
Expand Down

0 comments on commit 5f96f53

Please sign in to comment.