Merged
Conversation
Upgrade authlib from 1.6.6 to 1.6.7 to address JWT alg:none vulnerability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #76 +/- ##
=======================================
Coverage 90.62% 90.62%
=======================================
Files 10 10
Lines 1408 1408
=======================================
Hits 1276 1276
Misses 132 132 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request refactors and streamlines the analytics and onboarding codebase, focusing on improving data modeling for template-specific metrics, removing unused participant-related Firestore code, and cleaning up types. The changes enhance clarity and maintainability, especially around how template active hours are handled and displayed for teams and companies.
Template Analytics Improvements:
total_active_hourscolumn withtemplate_active_hoursin the team metrics table, ensuring that only hours relevant to the selected template are shown and sortable. The code now consistently usestemplate_active_hoursfor both display and sorting. (services/analytics/app/template/[templateName]/template-teams-content.tsxL11-R11, services/analytics/app/template/[templateName]/template-teams-content.tsxL64-R73, services/analytics/app/template/[templateName]/template-teams-content.tsxL346-R352, services/analytics/app/template/[templateName]/template-teams-content.tsxL389-R390)aggregateByCompanyfunction and related types to include and sumtemplate_active_hoursfor each company, ensuring company-level metrics reflect template-specific activity. [1] [2] [3]Firestore and Types Cleanup:
ParticipantDatatype, including functions for fetching participants and team mappings, to simplify the codebase and eliminate dead code. [1] [2] [3] [4]Type and Interface Adjustments:
GitHubStatustype to internal use by removing its export, and removes the unusedsummaryproperty from theApiResponseinterface in the onboarding dashboard. [1] [2]