18 lines
409 B
JavaScript
Executable File
18 lines
409 B
JavaScript
Executable File
'use strict';
|
|
/*Powered By: Manaknightdigital Inc. https://manaknightdigital.com/ Year: 2021*/
|
|
/**
|
|
* User Resolve Single
|
|
* @copyright 2021 Manaknightdigital Inc.
|
|
* @link https://manaknightdigital.com
|
|
* @license Proprietary Software licensing
|
|
* @author Ryan Wong
|
|
*
|
|
*/
|
|
|
|
module.exports = async (_, __, { directives: { verifyUser } }) => {
|
|
return {
|
|
success: true,
|
|
data: verifyUser?.user,
|
|
};
|
|
};
|