Skip to content

Instantly share code, notes, and snippets.

@willert
Created September 30, 2009 22:20
Show Gist options
  • Save willert/198508 to your computer and use it in GitHub Desktop.
Save willert/198508 to your computer and use it in GitHub Desktop.
Old style:
final action do_login as 'einloggen' {
my ( $system, $partner ) = @{$ctx->stash}{qw/ system partner /};
[...]
New style:
final action do_login( :$system, $partner ) as 'einloggen' {
[...]
Or:
final action do_login( :$system is stashed, $partner is stashed ) as 'einloggen' {
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment