Files
talk/graph/resolvers/local_user_profile.js
T
Wyatt Johnson 86c36f7d39 Email confirmation check
- filtering for confirmed emails
- fixes to logger to expose logger controls
- refactored graphql calls in other notification plugins
2018-03-01 14:43:29 -07:00

8 lines
157 B
JavaScript

const { property } = require('lodash');
const LocalUserProfile = {
confirmedAt: property('metadata.confirmed_at'),
};
module.exports = LocalUserProfile;