Add Terms and Privacy to info command

This commit is contained in:
Ean Milligan (Bastion) 2023-05-01 03:07:12 -04:00
parent 6a300d6f86
commit ac8913c86c
2 changed files with 11 additions and 1 deletions

View File

@ -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}).
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: {
text: `Current Version: ${config.version}`,
},

View File

@ -8,7 +8,7 @@ import { infoSlashName } from './slashCommandNames.ts';
const details: CommandDetails = {
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,
};