mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 08:13:45 +08:00
86c36f7d39
- filtering for confirmed emails - fixes to logger to expose logger controls - refactored graphql calls in other notification plugins
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
const { property } = require('lodash');
|
|
|
|
const LocalUserProfile = {
|
|
confirmedAt: property('metadata.confirmed_at'),
|
|
};
|
|
|
|
module.exports = LocalUserProfile;
|