Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
16 righe
317 B
16 righe
317 B
import { Meteor } from 'meteor/meteor';
|
|
import { check } from 'meteor/check';
|
|
import Links from '../collections/Links.js';
|
|
|
|
Meteor.methods({
|
|
'createLink'(title, url) {
|
|
check(url, String);
|
|
check(title, String);
|
|
|
|
return Links.insert({
|
|
url,
|
|
title,
|
|
createdAt: new Date(),
|
|
});
|
|
},
|
|
});
|
|
|