-
-
Notifications
You must be signed in to change notification settings - Fork 751
Use on_member_update for verification DMs #1330
Copy link
Copy link
Closed
Labels
a: backendRelated to internal functionality and utilities (error_handler, logging, security, utils and core)Related to internal functionality and utilities (error_handler, logging, security, utils and core)l: 0 - beginnerp: 2 - normalNormal PriorityNormal Prioritys: stalledSomething is blocking further progressSomething is blocking further progresst: featureNew feature or requestNew feature or request
Metadata
Metadata
Assignees
Labels
a: backendRelated to internal functionality and utilities (error_handler, logging, security, utils and core)Related to internal functionality and utilities (error_handler, logging, security, utils and core)l: 0 - beginnerp: 2 - normalNormal PriorityNormal Prioritys: stalledSomething is blocking further progressSomething is blocking further progresst: featureNew feature or requestNew feature or request
Type
Fields
Give feedbackNo fields configured for issues without a type.
We want to DM users some information once they pass the native Discord verification gate. To do this we need to watch for the
pendingattribute of the user change fromTruetoFalse.As of now we have implemented this by keeping track of a list of users who need to receive a welcome DM in a set called
pending_membersin theVerificationcog but we should switch this to useon_member_update(before, after)as soon as discord.py makes this available.Once a user passes the native gate we want to send them the
ALTERNATE_VERIFIED_MESSAGEdefined in this cog.As of now Discord.py do not have an upstream issue for this, but we should keep track of it to watch for when one is opened.