spee.ch/server/controllers/auth/signup/index.js

11 lines
249 B
JavaScript
Raw Normal View History

2018-03-29 20:40:47 +02: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-29 07:06:08 +02:00
};
module.exports = signup;