MonitoRSS
  • Welcome to v6.0.0
  • Setting Up (Self Hosting)
    • Bot
    • Web Interface
      • Setting up HTTPS
    • Docker
    • Existing Bot/NPM
    • Process Managers
    • Staying Updated
  • Configuration
    • Bot Config
      • Schedules
    • Web Interface Config
    • Environment Variables
    • Discord Commands
    • MongoDB vs Databaseless
  • Bot Customizations
    • Placeholders
    • Text
    • Embed
    • Filters
      • Regular
      • Regex
    • Subscribers
    • Dates and Timezone
    • Webhooks
  • Advanced Bot Customizations
    • Custom Comparisons
    • Filtered Message Formats
    • Custom Regex Placeholders
  • More Info
    • FAQ
Powered by GitBook
On this page
  • Format
  • Filters

Was this helpful?

  1. Bot Customizations

Subscribers

PreviousRegexNextDates and Timezone

Last updated 1 year ago

Was this helpful?

This documentation site is deprecated. Please visit the control panel at for all up-to-date functionality

Subscribers are users or roles that are mentioned when a new article has arrived. Subscribers can also have filters attached to them so they're only mentioned when certain articles pass their respective filters. To add new subscribers, use the mention comand.

Regular users can add subscribed roles to themselves with the sub command. Regular users can also remove subscribed roles from themselves with the unsub command.

For the role mentions to show up on messages, the placeholder {subscriptions} must be used.

Format

Subscriber
{
    "feed": ObjectId("feedid"),
    "type": "role",
    "id": "<role id here>"

}
Subscriber
{
    "feed": ObjectId("feedid"),
    "type": "user" ,
    "id": "<user id here>"
}

Filters

The same filter format as feed filters are used (both regular and regex).

Subscriber
{
    "feed": ObjectId("feedid"),
    "type": "role" ,
    "id": "<role id here>",
    "filters": {
        "title": ["hello"]
    }
}
Subscriber
{
    "feed": ObjectId("feedid"),
    "type": "role" ,
    "id": "<role id here>",
    "rfilters": {
        "title": "\d+"
    }
}
https://monitorss.xyz