You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently Discord has added a feature under Server Settings>Overview where one can set a channel as the channel that welcome messages will be sent to when a user joins. However, this change doesn't seem to be reflected in the .NET API yet as I can't find a method for obtaining the text channel set for welcoming new users. Will this be implemented, or has it already been implemented?
The text was updated successfully, but these errors were encountered:
It appears that it's not even entirely known what the API sends out to indicate that there is a "Welcome Messages channel" set. Once that is known, it shouldn't be that hard to add it to the model.
API-Level Proposal:
pubic interface IGuild
{
+ ulong? WelcomeChannelId { get; }
}
public class SocketGuild
{
# same-kind deal with the other implementations, just using Socket since it's the most used one+ public Optional<SocketTextChannel> WelcomeChannel { get; }
}
Recently Discord has added a feature under Server Settings>Overview where one can set a channel as the channel that welcome messages will be sent to when a user joins. However, this change doesn't seem to be reflected in the .NET API yet as I can't find a method for obtaining the text channel set for welcoming new users. Will this be implemented, or has it already been implemented?
The text was updated successfully, but these errors were encountered: