Improves AdapterLoader, enforces configuraiton on Adapters

This commit is contained in:
Florent Vilmart
2016-02-23 21:05:27 -05:00
parent 8dc37b9d30
commit 0b307bc22f
17 changed files with 176 additions and 109 deletions

View File

@@ -3,6 +3,7 @@ module.exports = options => {
throw "Options were not provided"
}
return {
sendVerificationEmail: () => Promise.resolve()
sendVerificationEmail: () => Promise.resolve(),
sendMail: () => Promise.resolve()
}
}