stripe integration done, handling missing still

This commit is contained in:
2023-08-03 15:37:50 +02:00
parent 19874cd007
commit 8784f79014
7 changed files with 39 additions and 12 deletions

View File

@@ -8,7 +8,17 @@
*/
class PaymentHandler {
constructor () {}
constructor () {
this.canceledTransactions = {};
}
async handleSuccess ( token ) {
console.log( token );
}
async handleError ( token ) {
}
}
module.exports = PaymentHandler;