Updated on 2026-08-14
This commit is contained in:
parent
0f44f21d6f
commit
4f237f898b
11 changed files with 218 additions and 52 deletions
|
|
@ -189,7 +189,11 @@ sealed class AppRoute(val path: String) : Route {
|
|||
}
|
||||
|
||||
@Serializable
|
||||
data object ManageTokens : AppRoute(path = "/manage_tokens")
|
||||
data class ManageTokens(
|
||||
val readOnlyContent: Boolean,
|
||||
) : AppRoute(path = "/manage_tokens/$readOnlyContent"), RouteBundleParams {
|
||||
override fun getBundle(): Bundle = bundle(serializer())
|
||||
}
|
||||
|
||||
@Serializable
|
||||
data object AddCustomToken : AppRoute(path = "/add_custom_token")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue