-
Notifications
You must be signed in to change notification settings - Fork 8
Missing brackets #5
Copy link
Copy link
Open
Description
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: 'name@email.com', // 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: 'name@email.com', // Your email account
pass: '' // Your password for email account
}
}
}
]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels