login system progress

This commit is contained in:
2023-03-26 12:36:21 +02:00
parent 5483f9f46c
commit aa38572aa4
8 changed files with 333 additions and 81 deletions

View File

@@ -0,0 +1,15 @@
/*
* myevent - db.js
*
* Created by Janis Hutz 03/26/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
*/
module.exports.getData = function getData ( db, searchQuery ) {
console.log( db + searchQuery );
return new Promise( resolve => {
resolve( '$2b$05$ElMYWoMjk7567lXkIkee.e.6cxCrWU4gkfuNLB8gmGYLQQPm7gT3O' );
} );
};