Skip to content

Commit

Permalink
Step 13.35: Update creation of users stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and darkbasic committed Oct 16, 2017
1 parent b6f23f7 commit 1819a87
Showing 1 changed file with 37 additions and 5 deletions.
42 changes: 37 additions & 5 deletions api/server/main.ts
@@ -1,4 +1,5 @@
import { Meteor } from 'meteor/meteor';
import { Picture } from './models';
import { Accounts } from 'meteor/accounts-base';
import { Users } from './collections/users';

Expand All @@ -12,43 +13,74 @@ Meteor.startup(() => {
return;
}

let picture = importPictureFromUrl({
name: 'man1.jpg',
url: 'https://randomuser.me/api/portraits/men/1.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000001',
profile: {
name: 'Ethan Gonzalez',
picture: 'https://randomuser.me/api/portraits/men/1.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'lego1.jpg',
url: 'https://randomuser.me/api/portraits/lego/1.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000002',
profile: {
name: 'Bryan Wallace',
picture: 'https://randomuser.me/api/portraits/lego/1.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'woman1.jpg',
url: 'https://randomuser.me/api/portraits/women/1.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000003',
profile: {
name: 'Avery Stewart',
picture: 'https://randomuser.me/api/portraits/women/1.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'woman2.jpg',
url: 'https://randomuser.me/api/portraits/women/2.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000004',
profile: {
name: 'Katie Peterson',
picture: 'https://randomuser.me/api/portraits/women/2.jpg'
pictureId: picture._id
}
});

picture = importPictureFromUrl({
name: 'man2.jpg',
url: 'https://randomuser.me/api/portraits/men/2.jpg'
});

Accounts.createUserWithPhone({
phone: '+972540000005',
profile: {
name: 'Ray Edwards',
picture: 'https://randomuser.me/api/portraits/men/2.jpg'
pictureId: picture._id
}
});
});

function importPictureFromUrl(options: { name: string, url: string }): Picture {
const description = { name: options.name };

return Meteor.call('ufsImportURL', options.url, description, 'pictures');
}

0 comments on commit 1819a87

Please sign in to comment.