Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
RIT_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
박권수
2021-10-16 16:16:45 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
fd286a555a5b44324c17acd966e57de7d9f63682
fd286a55
2 parents
dbba5c55
7775c289
Merge branch 'server' into web
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
server/src/api/user/user.ctrl.js
server/src/api/user/user.ctrl.js
View file @
fd286a5
...
...
@@ -132,7 +132,12 @@ exports.getMyDoctorList = async ctx => {
useYn
:
'Y'
,
});
return
doctorInfo
?
doctorInfo
.
info
:
null
;
if
(
doctorInfo
)
{
return
({
...
doctorInfo
.
info
,
doctorId
:
doctorInfo
.
doctorId
,
})
}
}));
ctx
.
status
=
200
;
...
...
Please
register
or
login
to post a comment