Blame view

client/routes/routes-authenticated.coffee 131 Bytes
eeaf2c379   Ryan Glover   Bump Iron Router ...
1
2
3
4
5
6
  Router.route('index',
    path: '/'
    template: 'index'
    onBeforeAction: ->
      # Code to run before route goes here.
      @next()
d1f4dbea8   Ryan Glover   Additional README...
7
  )