This commit is contained in:
Sacha Greif 2015-04-25 12:40:23 +09:00
parent d0c97e7ba9
commit 6fc6ad2b3d
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,2 @@
- Test that `/api/` returns the 20 latest approved posts.
- Test that `/api/:limit` returns `:limit` items.

View file

@ -0,0 +1,12 @@
### Single Post Page
- `/posts/:postId` should show a list of comments.
- `/posts/:postId` should subscribe to the `postComments` publication.
### Comment Submit
-
### Comment Edit
### Comment Delete

6
publish_packages.sh Normal file
View file

@ -0,0 +1,6 @@
for d in packages/* ; do
echo "$d"
cd $d
meteor publish
cd ../../
done