25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
751 B
33 lines
751 B
4 년 전
|
import { Meteor } from 'meteor/meteor';
|
||
|
import Links from './collections/Links.js';
|
||
|
|
||
|
Meteor.startup(() => {
|
||
|
// if the Links collection is empty
|
||
|
if (Links.find().count() === 0) {
|
||
|
const data = [
|
||
|
{
|
||
|
title: 'Do the Tutorial',
|
||
|
url: 'https://www.meteor.com/try',
|
||
|
createdAt: new Date(),
|
||
|
},
|
||
|
{
|
||
|
title: 'Follow the Guide',
|
||
|
url: 'http://guide.meteor.com',
|
||
|
createdAt: new Date(),
|
||
|
},
|
||
|
{
|
||
|
title: 'Read the Docs',
|
||
|
url: 'https://docs.meteor.com',
|
||
|
createdAt: new Date(),
|
||
|
},
|
||
|
{
|
||
|
title: 'Discussions',
|
||
|
url: 'https://forums.meteor.com',
|
||
|
createdAt: new Date(),
|
||
|
},
|
||
|
];
|
||
|
|
||
|
data.forEach(link => Links.insert(link));
|
||
|
}
|
||
|
});
|