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:
parent
0fb120d4ea
commit
af170ef553
@ -4,11 +4,8 @@
|
||||
# but you can also edit it by hand.
|
||||
|
||||
meteor-platform
|
||||
autopublish
|
||||
insecure
|
||||
iron:router
|
||||
mizzao:bootstrap-3
|
||||
coffeescript
|
||||
less
|
||||
perak:markdown
|
||||
|
||||
|
@ -1,5 +1,4 @@
|
||||
application-configuration@1.0.2
|
||||
autopublish@1.0.0
|
||||
autoupdate@1.1.1
|
||||
base64@1.0.0
|
||||
binary-heap@1.0.0
|
||||
@ -21,7 +20,6 @@ html-tools@1.0.1
|
||||
htmljs@1.0.1
|
||||
http@1.0.6
|
||||
id-map@1.0.0
|
||||
insecure@1.0.0
|
||||
iron:core@0.3.4
|
||||
iron:dynamic-template@0.4.1
|
||||
iron:layout@0.4.1
|
||||
|
@ -8,7 +8,7 @@ MarkCloud is [hosted online](http://markcloud.meteor.com).
|
||||
### Development
|
||||
|
||||
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
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
docs = new Meteor.Collection 'docs'
|
||||
|
||||
Meteor.publish 'doc', (id) -> docs.find _id: id
|
||||
|
||||
docs.allow
|
||||
insert: -> yes
|
||||
update: -> no
|
||||
remove: -> no
|
||||
|
Loading…
Reference in New Issue
Block a user