mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 04:53:12 +08:00
86c36f7d39
- filtering for confirmed emails - fixes to logger to expose logger controls - refactored graphql calls in other notification plugins
13 lines
219 B
JavaScript
13 lines
219 B
JavaScript
const UserProfile = {
|
|
__resolveType({ provider }) {
|
|
switch (provider) {
|
|
case 'local':
|
|
return 'LocalUserProfile';
|
|
default:
|
|
return undefined;
|
|
}
|
|
},
|
|
};
|
|
|
|
module.exports = UserProfile;
|