Skip to content

Instantly share code, notes, and snippets.

@timoweiss
Last active September 21, 2017 13:13
Show Gist options
  • Save timoweiss/8bac3170ebee7883d8d667d04cc58d97 to your computer and use it in GitHub Desktop.
Save timoweiss/8bac3170ebee7883d8d667d04cc58d97 to your computer and use it in GitHub Desktop.
seneca
seneca.act('role:users,cmd:login,email:abc@abc.de,password:secret');
seneca.act('role:users,cmd:login', { email: 'abc@abc.de', password: 'secret' });
seneca.act({ role: 'users', cmd: 'login' }, { email: 'abc@abc.de', password: 'secret' })
seneca.act({}, { role: 'users', cmd: 'login', email: 'abc@abc.de', password: 'secret' });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment