Update token disclaimer, add checkmark reaction on token command issue (#67)

* Update token disclaimer, add checkmark reaction on token command issue

* Changed reaction to message confirmation
This commit is contained in:
Bella | Nightshade 2019-03-31 04:05:13 +09:30 committed by Astrid
parent c37e7f4ee1
commit 9b7e331c5b

View File

@ -1,6 +1,6 @@
from pluralkit.bot.commands import CommandContext from pluralkit.bot.commands import CommandContext
disclaimer = "Please note that this grants access to modify (and delete!) all your system data, so keep it safe and secure. If it leaks or you need a new one, you can invalidate this one with `pk;token refresh`." disclaimer = "\u26A0 Please note that this grants access to modify (and delete!) all your system data, so keep it safe and secure. If it leaks or you need a new one, you can invalidate this one with `pk;token refresh`."
async def token_root(ctx: CommandContext): async def token_root(ctx: CommandContext):
@ -20,6 +20,7 @@ async def token_get(ctx: CommandContext):
token_message = "{}\n\u2705 Here's your API token:".format(disclaimer) token_message = "{}\n\u2705 Here's your API token:".format(disclaimer)
if token: if token:
await ctx.reply_ok("DM'd!")
await ctx.message.author.send(token_message) await ctx.message.author.send(token_message)
await ctx.message.author.send(token) await ctx.message.author.send(token)
return return