Add initial JSON data for users and reservations

- Created an empty reservations JSON file.
- Added initial user data with admin and student roles, including hashed passwords and timestamps.
This commit is contained in:
Alvin-Zilverstand
2025-11-06 09:24:05 +01:00
parent cad2e30141
commit 11291fbbc5
3 changed files with 960 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
[{
"_id": {
"$oid": "690b13c695d53f15a489ab86"
},
"username": "admin",
"password": "$2a$10$xUcDAWuSgK7tfz0uK5YahOf3MvuLGBivk/aR39PkkGsgLW/VkAoUC",
"role": "admin",
"createdAt": {
"$date": "2025-11-05T09:07:18.340Z"
},
"updatedAt": {
"$date": "2025-11-05T09:07:18.340Z"
},
"__v": 0
},
{
"_id": {
"$oid": "690b13c695d53f15a489ab88"
},
"username": "student",
"password": "$2a$10$JNYlFNqqw0FS03NQQidw/OQAgPkOvhbMlI2GvC2K6Ss8hhFkuvggy",
"email": "123456@vistacollege.nl",
"role": "student",
"createdAt": {
"$date": "2025-11-05T09:07:18.464Z"
},
"updatedAt": {
"$date": "2025-11-05T09:07:18.464Z"
},
"__v": 0
},
{
"_id": {
"$oid": "690b1b6959d6cb9b9a4695c4"
},
"username": "joey",
"password": "$2a$10$Netvip2ux/bJuERjWHbii.xV2drF3WYNLju1kbbkHQy256tk1PRQ6",
"email": "521924@vistacollege.nl",
"role": "student",
"createdAt": {
"$date": "2025-11-05T09:39:53.546Z"
},
"updatedAt": {
"$date": "2025-11-05T09:39:53.546Z"
},
"__v": 0
}]