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
travel
Commits
e9ea9d71
Commit
e9ea9d71
authored
Jul 21, 2022
by
Lee Soobeom
Browse files
Merge remote-tracking branch 'origin/sm11' into develop
parents
77ab700d
04e9c449
Changes
21
Show whitespace changes
Inline
Side-by-side
src/routes/mainimg.route.ts
0 → 100644
View file @
e9ea9d71
import
express
from
"
express
"
;
import
{
mainimgCtrl
,
authCtrl
}
from
"
../controllers
"
;
const
router
=
express
.
Router
();
router
.
route
(
"
/
"
)
.
get
(
authCtrl
.
requireLogin
,
mainimgCtrl
.
getMainimg
)
.
post
(
authCtrl
.
requireLogin
,
mainimgCtrl
.
createMainimg
);
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