Created
June 30, 2015 15:11
-
-
Save kayue/7d70cf89a6fb751629a3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Posts.views.add("latest", function (terms) { | |
return { | |
options: {sort: {lastCommentedAt: -1}} | |
}; | |
}); | |
Posts.controllers.latest = Posts.controllers.list.extend({ | |
view: "latest" | |
}); | |
Router.route('/latest', { | |
name: 'posts_latest', | |
controller: Posts.controllers.latest | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment