]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/initializers/migrations/0010-users-password.js
Client: fix error alert
[github/Chocobozzz/PeerTube.git] / server / initializers / migrations / 0010-users-password.js
1 /*
2 Convert plain user password to encrypted user password.
3 */
4
5 const mongoose = require('mongoose')
6
7 const User = mongoose.model('User')
8
9 exports.up = function (callback) {
10 User.list(function (err, users) {
11 if (err) return callback(err)
12
13 users.forEach(function (user) {
14 user.save()
15 })
16
17 return callback(null)
18 })
19 }
20
21 exports.down = function (callback) {
22 throw new Error('Not implemented.')
23 }