smart_garden_server/server/main.js
2020-07-09 14:26:01 +02:00

8 lines
187 B
JavaScript

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