xp-bot / v8

The official XP Discord Bot built with serenity.
https://xp-bot.net
3 stars 1 forks source link

Option to only print announcements, when a new role has been obtained #81

Open ConnysCode opened 1 year ago

ConnysCode commented 1 year ago

There should be an option on the dashboard, to only print the announcement, when a new role has been obtained.


Suggested by: 277950020102258698 Thread: 1086123870618136636

ConnysCode commented 1 year ago

@angelsflyinhell Added a new property to the announce model.

The announce Model now has a child-object named "conditions". Maybe we want to add multiple conditions in the future.

interface announceModel {
  announce: {
    // ...
    conditions: {
      onlyOnNewRole: boolean;
    };
  };
}