Skip to content

Commit

Permalink
Changed the /login command bot responses to ephemeral (only seen by t…
Browse files Browse the repository at this point in the history
…he command issuer, dismissable).
  • Loading branch information
Osvaldon committed Sep 22, 2024
1 parent 9278994 commit f0926bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DiscordBot.App/Commands/AuthenticationCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public AuthenticationCommands(DiscordService discordService, IServerDiscordApi s
if (response.Status)
await discordMember.GrantRoleAsync(_discordService.MemberRole);

await ctx.CreateResponseAsync(response.Message);
await ctx.CreateResponseAsync(response.Message, ephemeral: true);
}
}
}

0 comments on commit f0926bc

Please sign in to comment.