From 8a93b5191f4edfa64297cdb7f0d14eed71a08a2c Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 6 Mar 2020 13:43:08 -0800 Subject: [PATCH] networks: Show router wizard before Internet connection type wizard After user selects that they are behind the router, we need to show the router configuration wizard step. Only after this should be show the Internet connection type step. Signed-off-by: Sunil Mohan Adapa --- plinth/modules/networks/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plinth/modules/networks/__init__.py b/plinth/modules/networks/__init__.py index 7966e7328..36409eea4 100644 --- a/plinth/modules/networks/__init__.py +++ b/plinth/modules/networks/__init__.py @@ -25,13 +25,13 @@ first_boot_steps = [ 'order': 2, }, { - 'id': 'internet_connectivity_type_wizard', - 'url': 'networks:internet-connection-type-first-boot', + 'id': 'router_setup_wizard', + 'url': 'networks:router-configuration-first-boot', 'order': 3, }, { - 'id': 'router_setup_wizard', - 'url': 'networks:router-configuration-first-boot', + 'id': 'internet_connectivity_type_wizard', + 'url': 'networks:internet-connection-type-first-boot', 'order': 4, }, ]