您最多能選擇 25 個主題
主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
16 行
317 B
16 行
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(),
|
|
});
|
|
},
|
|
});
|
|
|