add mail config file

This commit is contained in:
2023-07-11 15:05:33 +02:00
parent 29a68edc0c
commit 72aae72dcf
4 changed files with 34 additions and 5 deletions

View File

@@ -0,0 +1,17 @@
/*
* libreevent - routes.js
*
* Created by Janis Hutz 07/11/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
const db = require( './db/db.js' );
module.exports = ( app, settings ) => {
app.post( '/api/reserveTicket', ( request, response ) ) {
db.getData( 'test', request.body );
response.send( 'ok' );
};
};