diff options
Diffstat (limited to 'src/server/app.js')
-rw-r--r-- | src/server/app.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/app.js b/src/server/app.js index 36d7e26..3477ed5 100644 --- a/src/server/app.js +++ b/src/server/app.js @@ -8,6 +8,7 @@ const compression = require('compression') const routes = require('./routes/index') const getSchedule = require('./routes/getSchedule') const manifest = require('./routes/manifest') +const slack = require('./routes/slack') const app = express() @@ -27,6 +28,7 @@ app.use(express.static(path.join(__dirname, '../client/static'))) app.use('/', routes) app.use('/get', getSchedule) +app.use('/slack', slack) // catch 404 and forward to error handler app.use(function (req, res, next) { |