Show new notification sound banner logic

This commit is contained in:
Benoit Marty 2025-10-07 12:20:24 +02:00 committed by Benoit Marty
parent df384f6365
commit 98637b8fc5
11 changed files with 150 additions and 2 deletions

View file

@ -37,5 +37,8 @@ interface AppPreferencesStore {
suspend fun setTracingLogPacks(targets: Set<TraceLogPack>)
fun getTracingLogPacksFlow(): Flow<Set<TraceLogPack>>
suspend fun setShowNewNotificationSoundBanner(show: Boolean)
fun showNewNotificationSoundBanner(): Flow<Boolean>
suspend fun reset()
}