diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-09-26 22:36:36 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-09-26 22:39:58 +0200 |
commit | 00d6b0dda4b1964ab11127851c0fc7106cc0f912 (patch) | |
tree | 3759ff8c8724f85f2554c28edf5bcf58a60085cf /server/initializers/migrations/0010-users-password.js | |
parent | 44c5275e1bdd1d4b4c23f7c423034e4293c927b3 (diff) | |
download | PeerTube-00d6b0dda4b1964ab11127851c0fc7106cc0f912.tar.gz PeerTube-00d6b0dda4b1964ab11127851c0fc7106cc0f912.tar.zst PeerTube-00d6b0dda4b1964ab11127851c0fc7106cc0f912.zip |
Add migration (for db, folders...) mechanism
Diffstat (limited to 'server/initializers/migrations/0010-users-password.js')
-rw-r--r-- | server/initializers/migrations/0010-users-password.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/server/initializers/migrations/0010-users-password.js b/server/initializers/migrations/0010-users-password.js new file mode 100644 index 000000000..e031fa142 --- /dev/null +++ b/server/initializers/migrations/0010-users-password.js | |||
@@ -0,0 +1,23 @@ | |||
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 | } | ||