payment cancellation

This commit is contained in:
2023-08-03 16:44:23 +02:00
parent 8784f79014
commit 935c8e32da
3 changed files with 25 additions and 3 deletions

View File

@@ -5,4 +5,14 @@
* https://janishutz.com, development@janishutz.com
*
*
*/
*/
const path = require( 'path' );
// const ph = require( './paymentHandler.js' );
// const paymentHandler = new ph();
module.exports = ( app, settings ) => {
app.get( '/payments/canceled', ( req, res ) => {
res.sendFile( path.join( __dirname + '/../../ui/en/payments/canceled.html' ) );
} );
};