finish various todo

This commit is contained in:
2023-09-02 13:48:11 +02:00
parent 043aa171ca
commit b784a6c605
6 changed files with 2 additions and 9 deletions

View File

@@ -186,7 +186,7 @@ module.exports.deleteJSONDataSimple = ( db, identifier ) => {
};
const gc = () => {
// this function acts as the database garbage collector. TicketTimeout can be changed from the GUI. TODO: Add
// this function acts as the database garbage collector. TicketTimeout can be changed from the GUI.
this.getData( 'temp' ).then( tempData => {
let data = tempData;
console.info( 'Garbage Collecting' );

View File

@@ -13,7 +13,6 @@ module.exports = ( app, settings ) => {
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' ) );
} );