Updated on 2026-08-14

This commit is contained in:
Tangem 2025-10-13 13:06:39 +02:00
parent 35253cded5
commit 9ad4259a5c
4 changed files with 28 additions and 1 deletions

View file

@ -56,4 +56,12 @@ interface NotificationsRepository {
suspend fun getWalletAutomaticallyEnabledList(): List<String>
suspend fun setNotificationsWasEnabledAutomatically(userWalletId: String)
/**
* By default it is false cause for the first try to show should be skipped. Only should be shown on second time
* app launch.
*/
suspend fun shouldAskNotificationPermissionsViaBs(): Boolean
suspend fun setShouldAskNotificationPermissionsViaBs(shouldAsk: Boolean)
}