Skip to content

Instantly share code, notes, and snippets.

@digilord
Created January 6, 2014 14:42
Show Gist options
  • Save digilord/8283707 to your computer and use it in GitHub Desktop.
Save digilord/8283707 to your computer and use it in GitHub Desktop.
Sample CoffeeScript controller for Iron Router
class @AuthorizedController extends RouteController
before: ->
console.log 'AuthorizedController :before action'
if not Meteor.user()?
@redirect 'salesLanding'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment