-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: Adding discourse analyzer config! #13
Conversation
WalkthroughThe update introduces significant enhancements to the Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configuration File (
|
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (3)
- setup.py (1 hunks)
- tc_analyzer_lib/schemas/platform_configs/init.py (1 hunks)
- tc_analyzer_lib/schemas/platform_configs/discourse.py (1 hunks)
Files skipped from review due to trivial changes (1)
- setup.py
Additional comments not posted (5)
tc_analyzer_lib/schemas/platform_configs/__init__.py (1)
3-3
: Import statement looks good.The import statement for
DiscourseAnalyzerConfig
is correctly added, making it available for external use.tc_analyzer_lib/schemas/platform_configs/discourse.py (4)
11-13
: Platform and resource identifier initialization looks good.The platform is correctly set to "discourse" and the resource identifier to "category_id".
14-59
: Hourly analytics initialization looks good.The hourly analytics list is correctly populated with various
HourlyAnalytics
objects, each configured with appropriate properties.
61-80
: Raw analytics initialization looks good.The raw analytics list is correctly populated with various
RawAnalytics
objects, each configured with appropriate properties.
82-82
: Super call looks good.The
super().__init__
call correctly passes the initialized parameters to the base class.
Summary by CodeRabbit
New Features
tc-analyzer-lib
package to version 1.4.0, indicating new functionalities or enhancements.DiscourseAnalyzerConfig
class for enhanced analytics configuration specific to the Discourse platform.DiscourseAnalyzerConfig
available for external use alongsideDiscordAnalyzerConfig
.Bug Fixes
Documentation
Refactor
Style
Tests
Chores
Revert