-
Notifications
You must be signed in to change notification settings - Fork 0
inbox support v1 #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
inbox support v1 #28
Conversation
| open(base_path / "query_result.json"), | ||
| )["data"]["node"], | ||
| } | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is just moved to a global conftest from a different file - since now we have more than one file with async tests.
|
|
||
| # Check if it's a public or private post (thread) | ||
| if channel.type in (discord.ChannelType.public_thread, discord.ChannelType.private_thread): | ||
| if channel.type in ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
collateral formatting change. Unrelated to the PR 😅
Added support for marking messages with an inbox emoji to keep track of them.
Typical use case would be to use the inbox emoji to signal to other people on discord that you saw a message, but you either will handle it later, or are already handling it async but it will take more time.
Having a bot keep track of all those messages will make it easier to keep track of them :)
the
!inboxcommand, just like all the other ones, can be also issued on a DM with the bot.Next step: send a daily reminder if the inbox is not empty :)