feat(date-memories): add dateReflection route to AppRoute
This commit is contained in:
parent
cf061f24f6
commit
9cd9cffe23
|
|
@ -46,6 +46,8 @@ object AppRoute {
|
||||||
const val DATE_MATCH = "date_match"
|
const val DATE_MATCH = "date_match"
|
||||||
const val DATE_MATCHES = "date_matches"
|
const val DATE_MATCHES = "date_matches"
|
||||||
const val DATE_BUILDER = "date_builder"
|
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 BUCKET_LIST = "bucket_list"
|
||||||
const val THIS_OR_THAT = "this_or_that"
|
const val THIS_OR_THAT = "this_or_that"
|
||||||
const val HOW_WELL = "how_well"
|
const val HOW_WELL = "how_well"
|
||||||
|
|
@ -195,6 +197,8 @@ object AppRoute {
|
||||||
|
|
||||||
fun answerReveal(questionId: String): String = "answer_reveal/${questionId.asRouteArg()}"
|
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 =
|
fun conversation(coupleId: String, conversationId: String): String =
|
||||||
"conversation/${coupleId.asRouteArg()}/${conversationId.asRouteArg()}"
|
"conversation/${coupleId.asRouteArg()}/${conversationId.asRouteArg()}"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue