feat(date-memories): add dateReflection route to AppRoute

This commit is contained in:
null 2026-06-30 18:14:14 -05:00
parent cf061f24f6
commit 9cd9cffe23
1 changed files with 4 additions and 0 deletions

View File

@ -46,6 +46,8 @@ object AppRoute {
const val DATE_MATCH = "date_match"
const val DATE_MATCHES = "date_matches"
const val DATE_BUILDER = "date_builder"
const val DATE_MEMORIES = "date_memories"
const val DATE_REFLECTION = "date_reflection/{dateId}"
const val BUCKET_LIST = "bucket_list"
const val THIS_OR_THAT = "this_or_that"
const val HOW_WELL = "how_well"
@ -195,6 +197,8 @@ object AppRoute {
fun answerReveal(questionId: String): String = "answer_reveal/${questionId.asRouteArg()}"
fun dateReflection(dateId: String): String = "date_reflection/${dateId.asRouteArg()}"
fun conversation(coupleId: String, conversationId: String): String =
"conversation/${coupleId.asRouteArg()}/${conversationId.asRouteArg()}"