aboutsummaryrefslogtreecommitdiff
path: root/src/webex/wxApi.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-12-12 16:39:55 +0100
committerFlorian Dold <florian.dold@gmail.com>2017-12-12 16:39:55 +0100
commitb5a4bcb247ec94ee99ca83c068d660574a36a0d7 (patch)
treeb6fe2b9aebc35f342f730a776ec9a50eb480caa6 /src/webex/wxApi.ts
parent1bcc5022c27fff2c28c38b3db12ac353cc7d3481 (diff)
downloadwallet-core-b5a4bcb247ec94ee99ca83c068d660574a36a0d7.tar.xz
show notification dot when balance changes (#5214)
Diffstat (limited to 'src/webex/wxApi.ts')
-rw-r--r--src/webex/wxApi.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/webex/wxApi.ts b/src/webex/wxApi.ts
index 61a45c024..2575eec90 100644
--- a/src/webex/wxApi.ts
+++ b/src/webex/wxApi.ts
@@ -381,3 +381,7 @@ export function acceptTip(merchantDomain: string, tipId: string): Promise<TipSta
export function processTipResponse(merchantDomain: string, tipId: string, tipResponse: TipResponse): Promise<void> {
return callBackend("process-tip-response", { merchantDomain, tipId, tipResponse });
}
+
+export function clearNotification(): Promise<void> {
+ return callBackend("clear-notification", { });
+}