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 12:08:26 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
7775c2894e8fc18d1930bd761c6efbf3f2dbda2d
7775c289
1 parent
df0e4a39
fix. get Doctor List : doctorId 추가
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 @
7775c28
...
...
@@ -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