8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import { PlantTypesCollection } from '/imports/api/plantTypes';
|
|
|
|
Meteor.startup(() => {
|
|
|
|
PlantTypesCollection.insert({plantType: "BAUM"});
|
|
});
|