respond to taler-payment-succeeded

This commit is contained in:
Florian Dold 2016-10-02 23:42:10 +02:00
parent 9b471718e3
commit d2e0386638

View File

@ -283,6 +283,10 @@ namespace TalerNotify {
}) })
}); });
addHandler("taler-payment-succeeded", (msg: any, sendResponse: any) => {
sendResponse();
});
addHandler("taler-get-payment", (msg: any, sendResponse: any) => { addHandler("taler-get-payment", (msg: any, sendResponse: any) => {
const walletMsg = { const walletMsg = {
type: "execute-payment", type: "execute-payment",
@ -319,4 +323,4 @@ namespace TalerNotify {
}); });
}); });
} }
} }