public async Task SetWelcomeMessage(CommandContext ctx, [Description("Kanał do wysyłania wiadomości.")] DiscordChannel channel, [Description("Treść wiadomości.")][RemainingText] string message) { await ctx.TriggerTypingAsync(); _welcomeMessageService.SetWelcomeMessage(ctx.Guild.Id, channel.Id, message); await PostEmbedHelper.PostEmbed(ctx, "Wiadomość powitalna", "Ustawiono nową wiadomość powitalną"); }
//TODO: Make sure bot can write in the channel suggested (Channel permissions) public async Task SetWelcomeMessage(string remainder) { await ReplyAsync(_wms.SetWelcomeMessage(Context.Guild, Context.Message.Content)); }