accounts-seznam
Installation
meteor add storyteller:accounts-seznam
Documentation
This package works similar to other accounts packages. See the Meteor Guide for more details.
By default, the package requests the identity permission. You can request additional permissions by setting the requestPermissions option in Accounts.ui.config or scopes settings file.
See the Seznam documentation for more details.
1Accounts.ui.config({ 2 requestPermissions: { 3 seznam: ["identity", "avatar", "adulthood"] 4 } 5});
or
1{ 2 "packages": { 3 "accounts-seznam": { 4 "scopes": ["identity", "avatar", "adulthood"] 5 } 6 } 7}