pxlsspace / PxlsBot

Modular Discord bot
ISC License
4 stars 2 forks source link

Implement starboard extension #24

Closed netux closed 3 years ago

netux commented 3 years ago

This PR is based off #22. Merge that first.

Adds a starboard extension which allows users to star (give ⭐ reaction) to their favorite messages and get them to the starboard channel. This is useful for keeping track of the best messages sent on the server, or to simply take things out of context.

source message board message

Server owners can configure the starboard channel and starboard threshold through the !config command: config set starboard_channel config set starboard_threshold

Breaking Changes

This PR adds two new columns to the config table.


ALTER TABLE config ADD COLUMN starboard_channel VARCHAR(18);
ALTER TABLE config ADD COLUMN starboard_threshold SMALLINT;