2018-03-29 11:40:47 -07:00
|
|
|
const signup = (req, res) => {
|
|
|
|
res.status(200).json({
|
|
|
|
success : true,
|
|
|
|
channelName : req.user.channelName,
|
|
|
|
channelClaimId: req.user.channelClaimId,
|
|
|
|
shortChannelId: req.user.shortChannelId,
|
|
|
|
});
|
2018-03-28 22:06:08 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = signup;
|