Skip to content

Commit

Permalink
Merge pull request #216 from aternosorg/settings
Browse files Browse the repository at this point in the history
rename settings command classes
  • Loading branch information
matthi4s authored Mar 8, 2021
2 parents e56c6eb + 1a7cdc8 commit 10ac976
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/commands/settings/antiSpam.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Command = require('../../Command');

class ExampleCommand extends Command {
class AntiSpamCommand extends Command {

static description = 'Configure message spam protection (deletes spammed messages)';

Expand Down Expand Up @@ -41,4 +41,4 @@ class ExampleCommand extends Command {
}
}

module.exports = ExampleCommand;
module.exports = AntiSpamCommand;
4 changes: 2 additions & 2 deletions src/commands/settings/maxMentions.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Command = require('../../Command');

class ExampleCommand extends Command {
class MaxMentionsCommand extends Command {

static description = 'Configure how many users a user should be allowed to mention in one message';

Expand Down Expand Up @@ -46,4 +46,4 @@ class ExampleCommand extends Command {
}
}

module.exports = ExampleCommand;
module.exports = MaxMentionsCommand;
4 changes: 2 additions & 2 deletions src/commands/settings/similarMessages.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const Command = require('../../Command');

class ExampleCommand extends Command {
class SimilarMessagesCommand extends Command {

static description = 'Configure message repeated message protection (deletes similar messages)';

Expand Down Expand Up @@ -41,4 +41,4 @@ class ExampleCommand extends Command {
}
}

module.exports = ExampleCommand;
module.exports = SimilarMessagesCommand;

0 comments on commit 10ac976

Please sign in to comment.