feat(nav): add CHANGE_PASSWORD route constant
This commit is contained in:
parent
a096ca15d1
commit
06c94f55f4
|
|
@ -38,6 +38,7 @@ object AppRoute {
|
||||||
const val RELATIONSHIP_SETTINGS = "relationship_settings"
|
const val RELATIONSHIP_SETTINGS = "relationship_settings"
|
||||||
const val DELETE_ACCOUNT = "delete_account"
|
const val DELETE_ACCOUNT = "delete_account"
|
||||||
const val SECURITY = "security_settings"
|
const val SECURITY = "security_settings"
|
||||||
|
const val CHANGE_PASSWORD = "change_password"
|
||||||
const val WHEEL_HISTORY = "wheel_history"
|
const val WHEEL_HISTORY = "wheel_history"
|
||||||
const val GAME_HISTORY = "game_history"
|
const val GAME_HISTORY = "game_history"
|
||||||
const val THIS_OR_THAT_REPLAY = "this_or_that_replay/{sessionId}"
|
const val THIS_OR_THAT_REPLAY = "this_or_that_replay/{sessionId}"
|
||||||
|
|
@ -116,6 +117,7 @@ object AppRoute {
|
||||||
Definition(RELATIONSHIP_SETTINGS, "Relationship Settings", "settings"),
|
Definition(RELATIONSHIP_SETTINGS, "Relationship Settings", "settings"),
|
||||||
Definition(DELETE_ACCOUNT, "Delete Account", "settings"),
|
Definition(DELETE_ACCOUNT, "Delete Account", "settings"),
|
||||||
Definition(SECURITY, "Security", "settings"),
|
Definition(SECURITY, "Security", "settings"),
|
||||||
|
Definition(CHANGE_PASSWORD, "Change Password", "settings"),
|
||||||
Definition(WHEEL_HISTORY, "Wheel History", "wheel"),
|
Definition(WHEEL_HISTORY, "Wheel History", "wheel"),
|
||||||
Definition(GAME_HISTORY, "Past Games", "play"),
|
Definition(GAME_HISTORY, "Past Games", "play"),
|
||||||
Definition(THIS_OR_THAT_REPLAY, "This or That Results", "play"),
|
Definition(THIS_OR_THAT_REPLAY, "This or That Results", "play"),
|
||||||
|
|
@ -188,6 +190,7 @@ object AppRoute {
|
||||||
RELATIONSHIP_SETTINGS,
|
RELATIONSHIP_SETTINGS,
|
||||||
DELETE_ACCOUNT,
|
DELETE_ACCOUNT,
|
||||||
SECURITY,
|
SECURITY,
|
||||||
|
CHANGE_PASSWORD,
|
||||||
CONNECTION_CHALLENGES,
|
CONNECTION_CHALLENGES,
|
||||||
MEMORY_LANE,
|
MEMORY_LANE,
|
||||||
MEMORY_LANE_CAPSULE,
|
MEMORY_LANE_CAPSULE,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue