Files
talk/graph/resolvers/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

13 lines
219 B
JavaScript

const UserProfile = {
__resolveType({ provider }) {
switch (provider) {
case 'local':
return 'LocalUserProfile';
default:
return undefined;
}
},
};
module.exports = UserProfile;