overleaf/services/notifications/README.md

15 lines
309 B
Markdown
Raw Normal View History

2016-01-14 12:35:16 +00:00
notifications-sharelatex
===============
An API for managing user notifications in ShareLaTeX
2016-08-11 11:03:50 +00:00
database indexes
================
For notification expiry to work, a TTL index on `notifications.expires` must be created:
2016-08-11 11:03:50 +00:00
```javascript
db.notifications.createIndex({expires: 1}, {expireAfterSeconds: 10})
2016-08-11 11:03:50 +00:00
```