Subscribers

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.

Format

Subscriber
{
    "feed": ObjectId("feedid"),
    "type": "role",
    "id": "<role 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"]
    }
}

Last updated

Was this helpful?