spee.ch/server/controllers/auth/signup/index.js
2018-04-27 14:29:00 -07:00

11 lines
249 B
JavaScript

const signup = (req, res) => {
res.status(200).json({
success : true,
channelName : req.user.channelName,
channelClaimId: req.user.channelClaimId,
shortChannelId: req.user.shortChannelId,
});
};
module.exports = signup;