The weeb for the next gen discord boat - Wamellow wamellow.com
bot discord
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix reddit notification docs

Luna df4ae9c4 931fc131

+13 -7
+13 -7
public/docs/notifications.md
··· 53 53 For all other services, you can take advantage of a regex to blacklist posts: 54 54 - `^\[live\]` will not post anything starting with `[live]`. 55 55 - `insult|badword` will not post anything that includes either `insult` or `badword`. 56 + - `^(?!support$).+$` will only post that are `support`. (useful for reddit flairs) 56 57 <br /> 57 58 <br /> 58 59 59 60 You can use [regexr.com](https://regexr.com/) or [ChatGPT](https://chatgpt.com/) to create (JavaScript-like) regexs. 60 61 You can use regex keywords to negate the condition, in order to create a whitelist filter. 61 - The flags used for string matching are `gi`, only the title is checked. 62 + The flags used for string matching are `gi`, only the titles and reddit flairs are checked. 62 63 63 64 ### 🥳 Test notification 64 65 Test notifications let you see how your message will look like when a video is uploaded or a streamer goes live, etc. ··· 290 291 <td>Post id</td> 291 292 </tr> 292 293 <tr> 294 + <td><code>post.title</code></td> 295 + <td>Some funny title</td> 296 + <td>Post title</td> 297 + </tr> 298 + <tr> 293 299 <td><code>post.text</code></td> 294 300 <td>A very, very long text</td> 295 301 <td>Post body</td> 296 302 </tr> 297 303 <tr> 298 - <td><code>post.thumbnail</code>*</td> 304 + <td><code>post.thumbnail</code></td> 299 305 <td>https://.../..</td> 300 306 <td>Post thumbnail</td> 307 + </tr> 308 + <tr> 309 + <td><code>post.flair</code></td> 310 + <td>Support</td> 311 + <td>Post flair</td> 301 312 </tr> 302 313 <tr> 303 314 <td><code>post.posted.ago</code></td> ··· 341 352 </tr> 342 353 </tbody> 343 354 </table> 344 - <br /> 345 - 346 - *`post.thumbnail` is in testing and might change, note that it's content is optional and might be empty. 347 - 348 - <br /> 349 355 <br /> 350 356 351 357 <table>