Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] comment api 구현 #79

Merged
merged 13 commits into from
Nov 4, 2020
12 changes: 12 additions & 0 deletions web-BE/config/query.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,16 @@ module.exports = {
deleteMilestone: 'DELETE FROM Milestone WHERE milestone_id=?;',
// user
selectUser: 'SELECT user_id, username, social FROM User WHERE username=? and social=?',









// comment
insertComment:
'INSERT INTO Comment(writer_id, content, write_time, is_issue_content, issue_id) VALUES (?,?,?,?,?)',
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ㅋㅋㅋ user랑 comment랑 사이가 꽤 나쁜가보네용 🧐
9줄의 간격,,

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

conflict 때문에 그렇게 했었는데... 상관이 없나보네요

};