From 06c94f55f4844d6995509e3aa85703cb224d85c1 Mon Sep 17 00:00:00 2001 From: null Date: Wed, 1 Jul 2026 02:19:22 -0500 Subject: [PATCH] feat(nav): add CHANGE_PASSWORD route constant --- app/src/main/java/app/closer/core/navigation/AppRoute.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/src/main/java/app/closer/core/navigation/AppRoute.kt b/app/src/main/java/app/closer/core/navigation/AppRoute.kt index 9f20e0a3..2df883c6 100644 --- a/app/src/main/java/app/closer/core/navigation/AppRoute.kt +++ b/app/src/main/java/app/closer/core/navigation/AppRoute.kt @@ -38,6 +38,7 @@ object AppRoute { const val RELATIONSHIP_SETTINGS = "relationship_settings" const val DELETE_ACCOUNT = "delete_account" const val SECURITY = "security_settings" + const val CHANGE_PASSWORD = "change_password" const val WHEEL_HISTORY = "wheel_history" const val GAME_HISTORY = "game_history" const val THIS_OR_THAT_REPLAY = "this_or_that_replay/{sessionId}" @@ -116,6 +117,7 @@ object AppRoute { Definition(RELATIONSHIP_SETTINGS, "Relationship Settings", "settings"), Definition(DELETE_ACCOUNT, "Delete Account", "settings"), Definition(SECURITY, "Security", "settings"), + Definition(CHANGE_PASSWORD, "Change Password", "settings"), Definition(WHEEL_HISTORY, "Wheel History", "wheel"), Definition(GAME_HISTORY, "Past Games", "play"), Definition(THIS_OR_THAT_REPLAY, "This or That Results", "play"), @@ -188,6 +190,7 @@ object AppRoute { RELATIONSHIP_SETTINGS, DELETE_ACCOUNT, SECURITY, + CHANGE_PASSWORD, CONNECTION_CHALLENGES, MEMORY_LANE, MEMORY_LANE_CAPSULE,