Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
WebBack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
websystem
WebBack
Commits
e5ae4470
Commit
e5ae4470
authored
3 months ago
by
세현 임
Browse files
Options
Downloads
Plain Diff
[#%{iid}] rename: DTO이름 변경(
#11
)
parents
ea9d1466
385eea78
No related branches found
Branches containing commit
No related tags found
1 merge request
!31
Develop
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
services/meetingService.js
+2
-2
2 additions, 2 deletions
services/meetingService.js
with
2 additions
and
2 deletions
services/meetingService.js
+
2
−
2
View file @
e5ae4470
...
...
@@ -3,7 +3,7 @@ const { Meeting, MeetingParticipant, User } = require('../models');
const
ChatRoom
=
require
(
'
../models/chatRooms
'
);
const
chatController
=
require
(
'
../controllers/chatController
'
);
const
MeetingResponse
=
require
(
'
../dtos/MeetingResponse
'
);
const
MeetingDetailResponse
=
require
(
'
../dtos/MeetingDetailResponse
'
);
const
MeetingDetailResponse
DTO
=
require
(
'
../dtos/MeetingDetailResponse
DTO
'
);
class
MeetingService
{
async
createMeeting
(
meetingData
)
{
...
...
@@ -152,7 +152,7 @@ class MeetingService {
throw
new
Error
(
'
모임을 찾을 수 없습니다.
'
);
}
return
new
MeetingDetailResponse
(
meeting
);
return
new
MeetingDetailResponse
DTO
(
meeting
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment