1
0
mirror of https://github.com/fazo96/markcloud.git synced 2025-01-10 11:04:21 +01:00

polished stuff a little

This commit is contained in:
fazo96 2014-10-04 09:39:07 +02:00
parent 0fb120d4ea
commit af170ef553
4 changed files with 6 additions and 6 deletions

View File

@ -4,11 +4,8 @@
# but you can also edit it by hand. # but you can also edit it by hand.
meteor-platform meteor-platform
autopublish
insecure
iron:router iron:router
mizzao:bootstrap-3 mizzao:bootstrap-3
coffeescript coffeescript
less less
perak:markdown perak:markdown

View File

@ -1,5 +1,4 @@
application-configuration@1.0.2 application-configuration@1.0.2
autopublish@1.0.0
autoupdate@1.1.1 autoupdate@1.1.1
base64@1.0.0 base64@1.0.0
binary-heap@1.0.0 binary-heap@1.0.0
@ -21,7 +20,6 @@ html-tools@1.0.1
htmljs@1.0.1 htmljs@1.0.1
http@1.0.6 http@1.0.6
id-map@1.0.0 id-map@1.0.0
insecure@1.0.0
iron:core@0.3.4 iron:core@0.3.4
iron:dynamic-template@0.4.1 iron:dynamic-template@0.4.1
iron:layout@0.4.1 iron:layout@0.4.1

View File

@ -8,7 +8,7 @@ MarkCloud is [hosted online](http://markcloud.meteor.com).
### Development ### Development
Clone the repository, make sure you installed [Meteor](http://meteor.com) then Clone the repository, make sure you installed [Meteor](http://meteor.com) then
run `meteor`. Yep, that's it. run `meteor` in the project folder. Yep, that's it.
## License ## License

View File

@ -1,3 +1,8 @@
docs = new Meteor.Collection 'docs' docs = new Meteor.Collection 'docs'
Meteor.publish 'doc', (id) -> docs.find _id: id Meteor.publish 'doc', (id) -> docs.find _id: id
docs.allow
insert: -> yes
update: -> no
remove: -> no