Add TODO key packages

This commit is contained in:
Kgothatso Ngako
2026-07-15 00:44:00 +02:00
parent 4178e5e544
commit e439b48fcd

View File

@@ -42,14 +42,11 @@ class KeyPackageManagementViewModel(
fun publishNewKeyPackage() {
viewModelScope.launch(Dispatchers.IO) {
// TODO: Rotate all other keys...
marmotRepository.publishMarmotKeyPackageBundle(
publicKey = activeUserPublicKey,
nsecPassword = "" // TODO: Implement nsecPassword logic...
)
keyPackageManagementUIState = KeyPackageManagementUIState.Loaded(
keyPackageBundles = marmotRepository.getMarmotKeyPackageBundles(activeUserPublicKey)
)
}
}