1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Server: Add NSFW in user profile

This commit is contained in:
Chocobozzz 2017-04-03 21:24:36 +02:00
parent 31b59b4774
commit 1d49e1e27d
9 changed files with 90 additions and 8 deletions

View file

@ -71,6 +71,7 @@ function createUser (req, res, next) {
username: req.body.username,
password: req.body.password,
email: req.body.email,
displayNSFW: false,
role: constants.USER_ROLES.USER
})
@ -136,7 +137,9 @@ function updateUser (req, res, next) {
db.User.loadByUsername(res.locals.oauth.token.user.username, function (err, user) {
if (err) return next(err)
user.password = req.body.password
if (req.body.password) user.password = req.body.password
if (req.body.displayNSFW !== undefined) user.displayNSFW = req.body.displayNSFW
user.save().asCallback(function (err) {
if (err) return next(err)