12345678910111213141516171819202122232425262728293031323334 |
- Posts = new Mongo.Collection('posts');
- Meteor.methods({
- postInsert: function(postAttributes) {
- check(Meteor.userId(), String);
- check(postAttributes, {
- title: String,
- url: String
- });
- var user = Meteor.user();
- var post = _.extend(postAttributes, {
- userId: user._id,
- author: user.username,
- submitted: new Date()
- });
- var postId = Posts.insert(post);
- return {
- _id: postId
- };
- }
- });
|