Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing brackets #5

Open
Journeytojah opened this issue Jan 25, 2017 · 1 comment
Open

Missing brackets #5

Journeytojah opened this issue Jan 25, 2017 · 1 comment

Comments

@Journeytojah
Copy link

Journeytojah commented Jan 25, 2017

Hello, I believe you are missing a pair of brackets here:

modules: [
module: 'camera',
position: 'top_center',
config: selfieInterval: 3, // Time interval in seconds before the photo will be taken.
emailConfig: {
service: 'Hotmail', // Email provider to use to send email with a photo.
auth: {
user: '[email protected]', // Your email account
pass: '' // Your password for email account
}
}
]

should be:

modules: [
{
module: 'camera',
position: 'top_center',
config: selfieInterval: 3, // Time interval in seconds before the photo will be taken.
emailConfig: {
service: 'Hotmail', // Email provider to use to send email with a photo.
auth: {
user: '[email protected]', // Your email account
pass: '' // Your password for email account
}
}
}
]

@ganapathyg981
Copy link

ganapathyg981 commented Jan 8, 2019

Use this works for me.
{
module: 'camera',
position: 'top_center',
config: {
selfieInterval: 3,
emailConfig: {
service: 'Gmail',
auth: {
user: '<>',
pass: '<>'
},
},
}
},

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants