feat: add StoreForward is_server config

This commit is contained in:
andrekir
2024-07-28 09:49:36 -03:00
parent cbd33f2c0c
commit 2e5d6db8b6

View File

@@ -79,6 +79,15 @@ fun StoreForwardConfigItemList(
})
}
item {
SwitchPreference(
title = "Server",
checked = storeForwardInput.isServer,
enabled = enabled,
onCheckedChange = { storeForwardInput = storeForwardInput.copy { isServer = it } })
}
item { Divider() }
item {
PreferenceFooter(
enabled = storeForwardInput != storeForwardConfig,