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
bora-it
Commits
02194d27
Commit
02194d27
authored
Jul 14, 2021
by
이재연
Browse files
Merge remote-tracking branch 'origin/room-api' into jaeyeon2
parents
0dbdbcb5
aa59e0a7
Changes
22
Show whitespace changes
Inline
Side-by-side
routes/room.route.js
0 → 100644
View file @
02194d27
import
express
from
"
express
"
;
import
roomCrtl
from
"
../controllers/room.controller.js
"
;
const
router
=
express
.
Router
();
router
.
route
(
"
/
"
).
get
(
roomCrtl
.
login
);
export
default
router
;
routes/user.route.js
0 → 100644
View file @
02194d27
import
express
from
"
express
"
;
import
userCtrl
from
"
../controllers/user.controller.js
"
;
const
router
=
express
.
Router
();
router
.
route
(
"
/
"
).
post
(
userCtrl
.
login
);
export
default
router
;
Prev
1
2
Next
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