summaryrefslogtreecommitdiffstats
path: root/client/components/users/router.js
blob: 6c3b342998eb8455ce1d0138cfd70b0db1a1433c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
_.each(['signIn', 'signUp', 'resetPwd', 'forgotPwd', 'enrollAccount'],
  function(routeName) {
  AccountsTemplates.configureRoute(routeName, {
    layoutTemplate: 'userFormsLayout'
  });
});

Router.route('/profile/:username', {
  name: 'Profile',
  template: 'profile',
  waitOn: function() {
    return Meteor.subscribe('profile', this.params.username);
  },
  data: function() {
    var params = this.params;
    return {
      profile: function() {
        return Users.findOne({ username: params.username });
      }
    };
  }
});