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 Jan 6, 2025
1 parent 59040c8 commit fb863d7
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 @@ -236,7 +236,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 @@ -265,7 +265,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 @@ -274,7 +274,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 fb863d7

Please sign in to comment.