You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2021. It is now read-only.
for (let i = 0; i < numberOfUsersToPopulate; i++) {
// Because this generates a f*** ton of users very quickly. Opted to use v4 of UUID to prevent any collisions, though this is highly unlikely. But just in case!
NewUserSchema = {
'id': uuid.v4(),
'name': `Test User #${i}`,
'email': `test_user${i}@tourisit.local`,
'password': 'nologin',
'lastseen_time': new Date(),
'ip_address': '127.0.0.1', // TODO: Add IP Address mechanism