mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
10 lines
295 B
JavaScript
10 lines
295 B
JavaScript
/* eslint func-names:0 */
|
|
|
|
const {DatabaseConnectionFactory} = require(`nylas-core`);
|
|
|
|
module.exports = (server) => {
|
|
server.decorate('request', 'getAccountDatabase', function () {
|
|
const account = this.auth.credentials;
|
|
return DatabaseConnectionFactory.forAccount(account.id);
|
|
});
|
|
}
|