-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
686 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
["en-US", "en-GB", "tr"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "ban", | ||
"description": "Ban a user", | ||
|
||
"commandOptions": { | ||
"userOption": { | ||
"name": "user", | ||
"description": "The user to ban" | ||
}, | ||
|
||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The reason for banning the user" | ||
}, | ||
|
||
"deleteMessageDaysOption": { | ||
"name": "delete", | ||
"description": "Number of days of user messages to delete" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "commands", | ||
"description": "See a list of Quark's commands" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "debug", | ||
"description": "Generate a debug report for this server", | ||
"commandOptions": { | ||
"shareOption": { | ||
"name": "share", | ||
"description": "Choose whether to share this debug report with the developers" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "export", | ||
"description": "Export a group of logs", | ||
|
||
"commandOptions": { | ||
"startOption": { | ||
"name": "start", | ||
"description": "The message link of the first log to start exporting from" | ||
}, | ||
|
||
"endOption": { | ||
"name": "end", | ||
"description": "The message link of the last log to export from" | ||
}, | ||
|
||
"formatOption": { | ||
"name": "format", | ||
"description": "The format of the exported logs", | ||
|
||
"choices": { | ||
"json": { | ||
"name": "json" | ||
}, | ||
"pretty": { | ||
"name": "pretty" | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "help", | ||
"description": "Get help with Quark", | ||
"commandOptions": { | ||
"overviewOption": { | ||
"name": "overview", | ||
"description": "See general help info" | ||
}, | ||
"serverlogOption": { | ||
"name": "serverlog", | ||
"description": "Get help with Quark's serverlogs" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "invite", | ||
"description": "Invite Quark to your server" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "kick", | ||
"description": "Kick a user", | ||
|
||
"commandOptions": { | ||
"userOption": { | ||
"name": "user", | ||
"description": "The user to kick" | ||
}, | ||
|
||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The reason for kicking the user" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "language", | ||
"description": "Change Quark's language", | ||
"commandOptions": { | ||
"languageOption": { | ||
"name": "language", | ||
"description": "Set the bot language for this server" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ | ||
"name": "mute", | ||
"description": "Mute a user", | ||
|
||
"commandOptions": { | ||
"userOption": { | ||
"name": "user", | ||
"description": "The user to mute" | ||
}, | ||
|
||
"timeOption": { | ||
"name": "time", | ||
"description": "Period of time to timeout the user for. Default unit is days" | ||
}, | ||
|
||
"typeOption": { | ||
"name": "type", | ||
"description": "Units for the \"time\" field. Defaults to days", | ||
|
||
"choices": { | ||
"minutes": { | ||
"name": "minutes" | ||
}, | ||
"hours": { | ||
"name": "hours" | ||
}, | ||
"days": { | ||
"name": "days" | ||
} | ||
} | ||
}, | ||
|
||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The reason for muting the user" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "privacy", | ||
"description": "View our privacy policy" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "purge", | ||
"description": "Purge channel messages", | ||
"commandOptions": { | ||
"countOption": { | ||
"name": "count", | ||
"description": "Number of messages to delete (2-100)" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "reason", | ||
"description": "Modify the reason on a modlog", | ||
|
||
"commandOptions": { | ||
"caseOption": { | ||
"name": "case", | ||
"description": "Message ID of the modlog to modify" | ||
}, | ||
|
||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The new reason to update the modlog case with" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"name": "serverlog", | ||
"description": "Serverlog", | ||
|
||
"commandOptions": { | ||
"channelOptionAllChannel": { | ||
"name": "channel", | ||
"description": "Select the logging channel" | ||
}, | ||
|
||
"channelOptionAll": { | ||
"name": "all", | ||
"description": "Toggle channel from logging all log types" | ||
}, | ||
|
||
"channelOption": { | ||
"name": "channel", | ||
"description": "Set the serverlog channel" | ||
}, | ||
|
||
"targetUserOption": { | ||
"name": "user", | ||
"description": "Select a target" | ||
}, | ||
|
||
"ignoreOptionTarget": { | ||
"name": "target", | ||
"description": "Targets are people who are doing the action" | ||
}, | ||
|
||
"messageContentOption": { | ||
"name": "content", | ||
"description": "Add or remove a message from the ignore list" | ||
}, | ||
|
||
"ignoreOptionMessage": { | ||
"name": "message", | ||
"description": "Messages with this exact content are not recorded to the serverlog" | ||
}, | ||
|
||
"executorUserOption": { | ||
"name": "user", | ||
"description": "Select an executor" | ||
}, | ||
|
||
"ignoreOptionExecutor": { | ||
"name": "executor", | ||
"description": "Executors are people carrying out the action" | ||
}, | ||
|
||
"ignoreOptionsChannelChannel": { | ||
"name": "channel", | ||
"description": "Add or remove a channel from the ignore list" | ||
}, | ||
|
||
"ignoreOptionChannel": { | ||
"name": "channel", | ||
"description": "Messages in this channel are not recorded to the serverlog" | ||
}, | ||
|
||
"ignoreOption": { | ||
"name": "ignore", | ||
"description": "Ignore options" | ||
}, | ||
|
||
"spoilersOption": { | ||
"name": "spoilers", | ||
"description": "Spoiler all media sent to the serverlog" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
{ | ||
"name": "tags", | ||
"description": "Tags", | ||
"commandOptions": { | ||
"sendOptionTag": { | ||
"name": "tag", | ||
"description": "Name of tag to send" | ||
}, | ||
"sendOptionUser": { | ||
"name": "user", | ||
"description": "Mentions a user for better visibility" | ||
}, | ||
"sendOption": { | ||
"name": "send", | ||
"description": "Send a tag" | ||
}, | ||
"editOptionTag": { | ||
"name": "tag", | ||
"description": "Name of tag to edit" | ||
}, | ||
"editOptionText": { | ||
"name": "text", | ||
"description": "Text to display on the tag" | ||
}, | ||
"editOptionColour": { | ||
"name": "colour", | ||
"description": "The hex colour code for the tag" | ||
}, | ||
"editOptionImage": { | ||
"name": "image", | ||
"description": "A URL for an image to be displayed on the tag" | ||
}, | ||
"editOption": { | ||
"name": "edit", | ||
"description": "Edit a tag" | ||
}, | ||
"createOptionTag": { | ||
"name": "tag", | ||
"description": "Name of tag to create" | ||
}, | ||
"createOptionText": { | ||
"name": "text", | ||
"description": "Text to display on the tag" | ||
}, | ||
"createOption": { | ||
"name": "create", | ||
"description": "Create a tag" | ||
}, | ||
"deleteOptionTag": { | ||
"name": "tag", | ||
"description": "Name of tag to delete" | ||
}, | ||
"deleteOption": { | ||
"name": "delete", | ||
"description": "Delete a tag" | ||
}, | ||
"listOption": { | ||
"name": "list", | ||
"description": "List all tags" | ||
}, | ||
"helpOption": { | ||
"name": "help", | ||
"description": "Get help with tags" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "unban", | ||
"description": "Unban a user", | ||
"commandOptions": { | ||
"userOption": { | ||
"name": "user-id", | ||
"description": "The ID of the user to unban" | ||
}, | ||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The reason for unbanning the user" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"name": "unmute", | ||
"description": "Unmute a user", | ||
"commandOptions": { | ||
"userOption": { | ||
"name": "user", | ||
"description": "The user to unmute" | ||
}, | ||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The reason for unmuting the user" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "ban", | ||
"description": "Ban a user", | ||
|
||
"commandOptions": { | ||
"userOption": { | ||
"name": "user", | ||
"description": "The user to ban" | ||
}, | ||
|
||
"reasonOption": { | ||
"name": "reason", | ||
"description": "The reason for banning the user" | ||
}, | ||
|
||
"deleteMessageDaysOption": { | ||
"name": "delete", | ||
"description": "Number of days of user messages to delete" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"name": "commands", | ||
"description": "See a list of Quark's commands" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"name": "debug", | ||
"description": "Generate a debug report for this server", | ||
"commandOptions": { | ||
"shareOption": { | ||
"name": "share", | ||
"description": "Choose whether to share this debug report with the developers" | ||
} | ||
} | ||
} |
Oops, something went wrong.