We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c189cd5 commit c6ad57cCopy full SHA for c6ad57c
src/app.js
@@ -110,28 +110,6 @@ function start(handlers) {
110
});
111
112
113
- app.use('/notifications/debug', (req, res) => {
114
- const options = {
115
- from: new Date - 1 * 60 * 60 * 1000,
116
- until: new Date,
117
- limit: 100000,
118
- start: 0,
119
- order: 'desc',
120
- };
121
-
122
- //
123
- // Find items logged between today and yesterday.
124
125
- logger.query(options, (err, results) => {
126
- if (err) {
127
- res.status(500).json(err);
128
- return;
129
- }
130
131
- res.status(200).json({ history: results, env: process.env });
132
- });
133
134
135
app.use('/', apiRouter);
136
137
0 commit comments