From df0c4e5c6540c61ce120bb6a739288da162fbf34 Mon Sep 17 00:00:00 2001 From: Brad Stein Date: Fri, 23 Jan 2026 19:37:06 -0300 Subject: [PATCH] portal: make firefly/wger steps self-verified --- backend/atlas_portal/routes/access_requests.py | 2 -- frontend/src/views/OnboardingView.vue | 8 ++++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/backend/atlas_portal/routes/access_requests.py b/backend/atlas_portal/routes/access_requests.py index 9c5643a..d3909b9 100644 --- a/backend/atlas_portal/routes/access_requests.py +++ b/backend/atlas_portal/routes/access_requests.py @@ -193,8 +193,6 @@ ONBOARDING_REQUIRED_STEPS: tuple[str, ...] = ( KEYCLOAK_MANAGED_STEPS: set[str] = { "keycloak_password_rotated", "nextcloud_mail_integration", - "firefly_password_rotated", - "wger_password_rotated", } _KEYCLOAK_PASSWORD_ROTATION_REQUESTED_ARTIFACT = "keycloak_password_rotation_requested_at" diff --git a/frontend/src/views/OnboardingView.vue b/frontend/src/views/OnboardingView.vue index 6439af7..8dc9ecd 100644 --- a/frontend/src/views/OnboardingView.vue +++ b/frontend/src/views/OnboardingView.vue @@ -518,9 +518,9 @@ const SECTION_DEFS = [ { id: "firefly_password_rotated", title: "Change your Firefly password", - action: "auto", + action: "confirm", description: - "Sign in to money.bstein.dev with the credentials on your Account page, then change the password. This step completes once the original password no longer works.", + "Sign in to money.bstein.dev with the credentials on your Account page, change the password, then confirm here.", links: [ { href: "https://money.bstein.dev", text: "money.bstein.dev" }, { href: "/account", text: "Account credentials" }, @@ -549,9 +549,9 @@ const SECTION_DEFS = [ { id: "wger_password_rotated", title: "Change your Wger password", - action: "auto", + action: "confirm", description: - "Sign in to health.bstein.dev with the credentials on your Account page, then change the password. This step completes once the original password no longer works.", + "Sign in to health.bstein.dev with the credentials on your Account page, change the password, then confirm here.", links: [ { href: "https://health.bstein.dev", text: "health.bstein.dev" }, { href: "/account", text: "Account credentials" },