mirror of
https://github.com/janishutz/libreevent.git
synced 2026-04-29 14:29:25 +02:00
prepare payment gateway settings
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
const path = require( 'path' );
|
||||
|
||||
module.exports = ( app, settings ) => {
|
||||
app.get( '/eventAssets/:image', ( req, res ) => {
|
||||
res.sendFile( path.join( __dirname + '/../assets/events/' + req.params.image ) );
|
||||
} );
|
||||
|
||||
app.get( '/otherAssets/:image', ( req, res ) => {
|
||||
res.sendFile( path.join( __dirname + '/../assets/' + req.params.image ) );
|
||||
} );
|
||||
|
||||
app.get( '/supportFiles/:file', ( req, res ) => {
|
||||
res.sendFile( path.join( __dirname + '/../ui/home/templates/' + settings.startPage + '/supportFiles/' + req.params.file ) );
|
||||
} );
|
||||
|
||||
// TODO: Decide if removed or not
|
||||
app.get( '/startPage/helperFunction', ( req, res ) => {
|
||||
res.sendFile( path.join( __dirname + '/../ui/home/helper.js' ) );
|
||||
} );
|
||||
};
|
||||
Reference in New Issue
Block a user