Skip to content

Commit

Permalink
remove unused files and fix some typos
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelmaeuer committed Apr 7, 2021
1 parent 11c0da9 commit 010a0d0
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions samples/README.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/ingest/events/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module.exports = async (req, res) => {
// log access attempt
logger.log({
level: 'warning',
message: 'User attempted event with missmatching names',
message: 'User attempted event with mismatching names',
source,
data: {
email: req.user.email,
Expand Down
2 changes: 1 addition & 1 deletion src/ingest/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ router.delete('/subscriptions/:subscriptionName', authVerify, require('./subscri
router.get('/topics/', authVerify, require('./topics/list'))
router.get('/topics/:topicName', authVerify, require('./topics/list'))

// send healthcheck ok
// send health-check ok
router.get(['/', '/health'], (req, res) => {
res.sendStatus(200)
})
Expand Down
Empty file.

0 comments on commit 010a0d0

Please sign in to comment.