Skip to content

Instantly share code, notes, and snippets.

@bithavoc
Created July 26, 2011 07:17
Show Gist options
  • Save bithavoc/1106176 to your computer and use it in GitHub Desktop.
Save bithavoc/1106176 to your computer and use it in GitHub Desktop.
Sample pseudo action
// pseudo Loader: https://github.com/firebaseco/pseudo
// actions/home.js
var pseudo = require('pseudo')
pseudo.get('/', {
filters:['requireLogin'],
action:function(req, res) {
var greeting = this.customContext // use custom context bound values
// render some view for the home page
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment