From: Daniel Karbach Date: Tue, 9 Dec 2025 11:59:43 +0000 (+0100) Subject: sync user command X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=7a533523eb334b4bd5325cf9cf42bfdf63de2b6b;p=alttp.git sync user command --- diff --git a/app/Console/Commands/DiscordSyncUserCommand.php b/app/Console/Commands/DiscordSyncUserCommand.php new file mode 100644 index 0000000..f66ec51 --- /dev/null +++ b/app/Console/Commands/DiscordSyncUserCommand.php @@ -0,0 +1,37 @@ +argument('user_id'); + + DiscordBotCommand::syncUser($user_id); + + return 0; + } +}