Skip to content

Commit

Permalink
models(Guild): remove mentionSpamThreshold field
Browse files Browse the repository at this point in the history
Signed-off-by: TRACTION <19631364+iamtraction@users.noreply.github.com>
  • Loading branch information
iamtraction committed May 14, 2023
1 parent a47fbb3 commit 3e3d4f5
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/models/Guild.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ export interface Guild {
linkFilter?: boolean;
linkFilterWarnings?: boolean;
linkFilterExemptions?: string[];
// spam filters
mentionSpamThreshold?: number;
// starboard
starboardChannel?: string;
starboardThreshold?: number;
Expand Down Expand Up @@ -160,9 +158,6 @@ export default mongoose.model<Guild & mongoose.Document>("Guild", new mongoose.S
linkFilterExemptions: {
type: [ String ],
},
mentionSpamThreshold: {
type: Number,
},
starboardChannel: {
type: String,
unique: true,
Expand Down

0 comments on commit 3e3d4f5

Please sign in to comment.