Revert "fix vbs database"
continuous-integration/drone/push Build is passing Details

This reverts commit b5ad255ccd.
master
Hannah 2026-07-15 01:01:05 -06:00
parent b5ad255ccd
commit 827a8a001a
7 changed files with 14786 additions and 6417 deletions

BIN
.DS_Store vendored

Binary file not shown.

21187
Client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -3,7 +3,7 @@
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "NODE_OPTIONS=--openssl-legacy-provider ng serve",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",

BIN
Server/.DS_Store vendored

Binary file not shown.

BIN
Server/src/.DS_Store vendored

Binary file not shown.

View File

@ -8,6 +8,12 @@ exports.insertVBS = function(year, email, firstName, lastName, data, callback){
callback(error);
return;
}
callback(null, result);
dbEvents.getEvent(result.insertId,function(error,event){
if (error){
callback(error);
return;
}
callback(null,event);
});
});
}

Binary file not shown.