Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
students
survey
Commits
d6f9b468
Commit
d6f9b468
authored
Jul 07, 2022
by
Yoon, Daeki
😅
Browse files
기본값으로 버전키와 비밀번호 toJSON 으로 유저 모델에서 제외
parent
3085c95e
Changes
1
Show whitespace changes
Inline
Side-by-side
src/models/user.model.ts
View file @
d6f9b468
...
...
@@ -12,7 +12,8 @@ const validateEmail = (email: string) => {
return
re
.
test
(
email
);
};
const
schema
=
new
Schema
<
IUser
>
({
const
schema
=
new
Schema
<
IUser
>
(
{
email
:
{
type
:
String
,
rquired
:
true
,
...
...
@@ -22,6 +23,15 @@ const schema = new Schema<IUser>({
name
:
{
type
:
String
},
password
:
{
type
:
String
,
required
:
true
,
select
:
false
},
role
:
{
type
:
Schema
.
Types
.
ObjectId
,
ref
:
"
Role
"
},
});
},
{
toJSON
:
{
versionKey
:
false
,
transform
(
doc
,
ret
,
options
)
{
delete
ret
.
password
;
},
},
}
);
export
default
model
<
IUser
>
(
"
User
"
,
schema
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment