mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
41 lines
No EOL
939 B
JavaScript
41 lines
No EOL
939 B
JavaScript
// Posts.fastRenderRoutes = [
|
|
// {
|
|
// path: "/",
|
|
// view: Settings.get('defaultView', 'top')
|
|
// },
|
|
// {
|
|
// path: "/top/:limit?",
|
|
// view: "top"
|
|
// },
|
|
// {
|
|
// path: "/new/:limit?",
|
|
// view: "new"
|
|
// },
|
|
// {
|
|
// path: "/best/:limit?",
|
|
// view: "best"
|
|
// },
|
|
// {
|
|
// path: "/pending/:limit?",
|
|
// view: "pending"
|
|
// },
|
|
// {
|
|
// path: "/scheduled/:limit?",
|
|
// view: "scheduled"
|
|
// }
|
|
// ];
|
|
|
|
// Posts.fastRenderSubscribe = function (view, params) {
|
|
// var subscriptionTerms = {
|
|
// view: view,
|
|
// limit: params.limit || Settings.get('postsPerPage', 10)
|
|
// };
|
|
// this.subscribe('postsList', subscriptionTerms);
|
|
// this.subscribe('postsListUsers', subscriptionTerms);
|
|
// };
|
|
|
|
// Meteor.startup(function () {
|
|
// Posts.fastRenderRoutes.forEach(function (route) {
|
|
// FastRender.route(route.path, _.partial(Posts.fastRenderSubscribe, route.view));
|
|
// });
|
|
// });
|