Skip to content

Commit

Permalink
feat: Added two more actions to discord activity!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Mar 5, 2024
1 parent 7be4ce7 commit 237ba5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="tc-core-analyzer-lib",
version="1.1.0",
version="1.2.0",
author="Mohammad Amin Dadgar, TogetherCrew",
maintainer="Mohammad Amin Dadgar",
maintainer_email="[email protected]",
Expand Down
5 changes: 4 additions & 1 deletion tc_core_analyzer_lib/utils/activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ class BaseActivity:

Reply: str = "reply"
Mention: str = "mention"
Reaction: str = "reaction"


class DiscordActivity:
Expand All @@ -14,4 +15,6 @@ class DiscordActivity:

Reply: str = BaseActivity.Reply
Mention: str = BaseActivity.Mention
Reaction: str = "reaction"
Reaction: str = BaseActivity.Reaction
Thread_msg: str = "thr_message"
Lone_msg: str = "lone_message"

0 comments on commit 237ba5f

Please sign in to comment.