Added basic user guide

This commit is contained in:
Stefan Zermatten
2015-04-29 12:25:33 +02:00
parent b95636a8a3
commit e05fa064d5
13 changed files with 145 additions and 45 deletions

View File

@@ -4,21 +4,12 @@ Router.configure({
});
Router.map(function() {
/*
this.route("home", {
path: "/",
waitOn: function(){
return Meteor.subscribe("characterList", Meteor.userId());
},
data: {
characters: function(){
return Characters.find({}, {fields: {_id: 1}});
}
}
});*/ //add a home route and change characterList route
this.route("/", {
name: "home",
});
this.route("characterList", {
path: "/",
path: "/characterList",
waitOn: function(){
return Meteor.subscribe("characterList", Meteor.userId());
},