Editor
This commit is contained in:
1 parent
867770e14e
commit
0ef4daa019
369 files changed
+45861
-209
No files matched your search
@@ -13,6 +13,10 @@ const UserSchema = new mongoose.Schema({
|
||||
type: String,
|
||||
required: true
|
||||
},
|
||||
image: {
|
||||
data: Buffer,
|
||||
contentType: String
|
||||
},
|
||||
role: {
|
||||
type: String,
|
||||
default: 'Student'
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
const fs = require('fs');
|
||||
const path = require('../routes/users.js').path;
|
||||
|
||||
let image = {
|
||||
data: fs.readFileSync(path),
|
||||
contentType: "image/png"
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
defaultImage: image
|
||||
}
|
||||
Reference in new issue
Block a user