Skip to content

Commit

Permalink
알람 전체 조회, 새로운 알람 조회 API
Browse files Browse the repository at this point in the history
  • Loading branch information
wook-hyung committed Dec 14, 2023
1 parent 0f3e7b9 commit 93405c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ const indexRouter = require('./routes/indexRouter');
const userRouter = require('./routes/userRouter');
const challengeRouter = require('./routes/challengeRouter');
const badgeRouter = require('./routes/badgeRouter');
const alarmRouter = require('./routes/alarmRouter');
const s3Router = require('./routes/s3Router');

require('dotenv').config();
Expand All @@ -33,7 +34,7 @@ app.use('/', indexRouter);
app.use('/users', userRouter);
app.use('/challenges', challengeRouter);
app.use('/badges', badgeRouter);

app.use('/alarms', alarmRouter);
app.use('/s3', s3Router);

app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(specs));
Expand Down

0 comments on commit 93405c2

Please sign in to comment.