Add Terms and Privacy to info command
This commit is contained in:
parent
6a300d6f86
commit
ac8913c86c
|
@ -76,6 +76,16 @@ Want to check out my source code? Check it out [here](${config.links.sourceCode
|
||||||
Need help with this bot? Join my support server [here](${config.links.supportServer}).
|
Need help with this bot? Join my support server [here](${config.links.supportServer}).
|
||||||
|
|
||||||
Ran into a bug? Report it to my developers using \`/${reportSlashName} [issue description]\`.`,
|
Ran into a bug? Report it to my developers using \`/${reportSlashName} [issue description]\`.`,
|
||||||
|
fields: [{
|
||||||
|
name: 'Privacy Policy and Terms of Service:',
|
||||||
|
value: `**${config.name} does not automatically track or collect user information via Discord.**
|
||||||
|
|
||||||
|
${config.name} stores data relating to events, event channels, and text from the \`/${reportSlashName}\` command.
|
||||||
|
|
||||||
|
For more details, please check out the Privacy Policy on my GitHub [here](${config.links.sourceCode}/blob/master/PRIVACY.md)
|
||||||
|
|
||||||
|
Terms of Service can also be found on my GitHub [here](${config.links.sourceCode}/blob/master/TERMS.md).`,
|
||||||
|
}],
|
||||||
footer: {
|
footer: {
|
||||||
text: `Current Version: ${config.version}`,
|
text: `Current Version: ${config.version}`,
|
||||||
},
|
},
|
||||||
|
|
|
@ -8,7 +8,7 @@ import { infoSlashName } from './slashCommandNames.ts';
|
||||||
|
|
||||||
const details: CommandDetails = {
|
const details: CommandDetails = {
|
||||||
name: infoSlashName,
|
name: infoSlashName,
|
||||||
description: `Information about ${config.name} and its developer.`,
|
description: `Information about ${config.name}, its Terms of Service, its Privacy Policy, and its developer.`,
|
||||||
type: ApplicationCommandTypes.ChatInput,
|
type: ApplicationCommandTypes.ChatInput,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue