Skip to content

Commit

Permalink
Added info explaining options for logging in
Browse files Browse the repository at this point in the history
  • Loading branch information
coopw1 committed Jan 8, 2024
1 parent cfc1399 commit a78af40
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/commands/userSettings/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,22 @@ module.exports = {
"After that, you can [get your ListenBrainz User token](https://listenbrainz.org/profile/)."
)
.setColor(0xeb743b);
const embed2 = new EmbedBuilder()
.setTitle('"Do I need to give my token?')
.setDescription(
'You can also login with only your username using `/settings user username:"yourUsername"`\n' +
"### Token \n" +
"* Allows BrainzBot to confirm your identity with ListenBrainz.\n" +
"* Used to make requests to ListenBrainz.\n" +
"* Carries the risks that come with giving full access to your ListenBrainz account.\n" +
"* Will never be shared with anyone.\n" +
"### Username\n" +
"* Can be used for most of the bot's functionality.\n" +
"* Will not be able to use any functionality that requires authentication, such as liking songs.\n"
)
.setColor(0xeb743b);
// Send embed
buttonInteraction.reply({ embeds: [embed], ephemeral: true });
buttonInteraction.reply({ embeds: [embed, embed2], ephemeral: true });
}
});
} else {
Expand Down

0 comments on commit a78af40

Please sign in to comment.