Merge branch '16-email-api' into 10-user-confirm-email-when-creating-new-password
This commit is contained in:
commit
eb62be5d86
4 changed files with 118 additions and 3 deletions
|
|
@ -224,6 +224,10 @@ $di->setShared('db', function () use ($di, $config) {
|
|||
return $db;
|
||||
});
|
||||
|
||||
$di->setShared('sendgrid', function() use ($config) {
|
||||
return new SendGrid($config->sendgrid->key);
|
||||
});
|
||||
|
||||
$di->setShared('eventsManager', function () {
|
||||
|
||||
$activityLog = new ActivityLog();
|
||||
|
|
|
|||
Reference in a new issue