We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2127d4f + 2187dcd commit 3989339Copy full SHA for 3989339
application/config.json.template
@@ -97,6 +97,24 @@
97
"rateLimitWindowSeconds": 10,
98
"rateLimitRequestsInWindow": 3
99
},
100
+ "helperPruneConfig": {
101
+ "roleFullLimit": 100,
102
+ "roleFullThreshold": 95,
103
+ "pruneMemberAmount": 7,
104
+ "inactivateAfterDays": 90,
105
+ "recentlyJoinedDays": 4
106
+ },
107
+ "featureBlacklist": {
108
+ "normal": [
109
+ ],
110
+ "special": [
111
+ ]
112
113
+ "starboard": {
114
+ "emojiNames" : ["⭐"],
115
+ "channelPattern": "starboard"
116
+ }
117
118
"featureBlacklist": {
119
"normal": [
120
],
application/src/main/resources/db/V14__Add_Starboard.sql
@@ -0,0 +1,4 @@
1
+CREATE TABLE starboard_messages
2
+(
3
+ message_id BIGINT NOT NULL PRIMARY KEY
4
+)
0 commit comments