add loopbackMigrationGrandfathered flag

This commit is contained in:
Berkeley Martinez
2015-08-05 11:29:19 -07:00
parent 585ef7db12
commit 9cb33e409c

View File

@ -92,6 +92,8 @@ var users = dbObservable
user.username = 'fcc' + uuid.v4().slice(0, 8); user.username = 'fcc' + uuid.v4().slice(0, 8);
if (user.github) { if (user.github) {
user.isGithubCool = true; user.isGithubCool = true;
} else {
user.isMigrationGrandfathered = true;
} }
return user; return user;
}) })