Skip to content

Main - #9627

Open
HexagonDot wants to merge 24 commits into
makeplane:previewfrom
HexagonDot:main
Open

Main#9627
HexagonDot wants to merge 24 commits into
makeplane:previewfrom
HexagonDot:main

Conversation

@HexagonDot

@HexagonDot HexagonDot commented Aug 15, 2026

Copy link
Copy Markdown

No description provided.

HexagonDot and others added 24 commits August 9, 2026 18:01
Program Timeline (workspace-level Gantt across all projects)
- New TimeLine-backed ProjectsTimeLineStore driving a project-per-row
  Gantt at /:workspaceSlug/program-timeline/, colored by completion %
- Backend: extend ProjectStatsEndpoint with start_date/target_date
  (derived from each project's issues) so bars have a real date range
- New sidebar/block renderers reusing the existing generic Gantt engine
- Wired into the workspace sidebar (dynamic nav items) and workspace
  user preferences (dismissible/reorderable like Drafts, Stickies, etc.)

Time Tracking (CE clone of Plane's Pro-tier feature)
- New TimeLog model (issue_time_logs): duration_minutes, logged_date,
  description, and a logged_by/created_by split so a project admin can
  log time on behalf of another member while keeping an audit trail of
  who actually submitted the entry
- Issue-scoped CRUD API with a full permission matrix: members manage
  their own entries, admins can additionally log/edit for others
- Workspace-level reporting endpoints: filterable listing (user/
  project/date range), CSV export, and aggregate analytics
  (by_date/by_project/by_member) - all scoped to projects the
  requester is an active member of
- tracked_time_minutes annotated on issue detail (computed via Sum,
  not denormalized, with an explicit deleted_at filter after catching
  a soft-delete double-counting bug during testing)
- Frontend: per-issue time-log store merged into the activity trail
  (reusing the existing reserved EActivityFilterType.WORKLOG slot),
  a Log Work modal (with an admin-only "logging for" member picker),
  a Tracked Time sidebar property, and a project Settings > Features
  toggle wired to i18n strings that already existed in the repo
  unused, suggesting this was previously scaffolded but never built

Verified end-to-end against a local Docker stack: full CRUD +
permission matrix via DRF test client, IDOR scoping on the workspace
endpoints, and the issue-detail UI (log/edit/delete, on-behalf-of
logging, live sidebar total) through the browser.

Known follow-ups (not included here): a Worklogs settings page for
workspace-wide reporting, an Analytics "Time Tracking" tab, and
Django test coverage for the new endpoints.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…log i18n/UX

- Add workspace-level time tracking analytics tab (totals, by project/user, over time)
- Add workspace settings Worklogs page with filters and CSV export
- Extend workspace time log API with project_ids filter; exclude archived projects
- Track logged_date/logged_by changes in time log activity
- Add time tracking row + log work modal to issue peek overview
- Localize time log UI strings across all locales
- Fix peek closing when interacting with portaled log work modal
Adds a Pomodoro timer scoped to issues: backend model/serializer/views
and migration, a per-user default settings field on Profile, web store
and hooks, issue-detail widget, global timer UI, and i18n strings
across all supported locales.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Deduplicate ignore rules, add monorepo tooling patterns, and remove redundant app-level gitignore files.

Co-authored-by: Cursor <cursoragent@cursor.com>
Wire day/hour/unscheduled drop targets to actually invoke the plan
mutation (previously only highlighted on drop), matching the
kanban board's draggable/drop-target pattern so the drag starts
reliably and hits the correct target. Also relax profile calendar
edit permissions so users can reschedule their own personal plans
without requiring project member access.

Co-authored-by: Cursor <cursoragent@cursor.com>
Make Your Work hours layout span the week, fix timezone-aware hour
drag-and-drop, and allow resizing blocks to set planned duration with
immediate optimistic UI updates.

Co-authored-by: Cursor <cursoragent@cursor.com>
Add 30-minute snap for hours calendar move/resize, move unscheduled
issues to a right sidebar with collapse, and expose profile sidebar
toggle on desktop.

Co-authored-by: Cursor <cursoragent@cursor.com>
#2)

The planned_at, planned_duration_minutes, and planned_date fields are
annotations from annotate_user_issue_plans(), not real Issue model fields.
Including them in grouper's default required_fields caused a 500 error on
every issue list request that doesn't annotate the queryset.

Move these fields to an extra_fields parameter passed only by the workspace
user view, which properly annotates the queryset first.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
- Move phase/break/session state from hook useState into MobX store
- Fix TPomodoroTimerReturn type drift (add isBreakRunning, isNextSessionReady, startBreak, pauseBreak, discardToBreak)
- Extract PomodoroControls (single button source), PomodoroCountdown, PomodoroSettingsInline
- Replace circular SVG ring with linear progress bar
- Replace floating pill with slim bottom bar global indicator
- Add Ctrl+Shift+P keyboard shortcut to toggle pause/resume
- Add inline settings panel in issue detail widget
- Add i18n keys for new strings

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Remove PomodoroCollapsible from issue detail widget list
- Remove PomodoroSidebarIndicator from time tracking sidebar row
- Delete issue-detail-widgets/pomodoro/ directory (root, title, content)
- Add PomodoroHeaderButton in issue toolbar (beside Copy Link)
  - Idle: Timer icon only → click starts focus immediately
  - Running on this issue: live countdown → popover with Pause/Complete/Discard
  - Paused on this issue: countdown → popover with Resume/Complete/Discard
  - Running on another issue: Timer icon + orange badge → popover with issue name + navigate link
- Gate button on projectDetails.is_time_tracking_enabled

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Place PomodoroHeaderButton on the right of the Activity title row,
alongside the sort and filter controls. Gated on isTimeTrackingEnabled
(already derived in IssueActivity). Remove from the issue toolbar.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: Cursor <cursoragent@cursor.com>
Track the local graphify-out artifacts and Claude settings so agents can query the codebase graph consistently.

Co-authored-by: Cursor <cursoragent@cursor.com>
Add scheduled time display in issue detail, 15-minute snap with grab-offset preservation, grid drop ghosts, and clearer drag feedback for the hours view.

Co-authored-by: Cursor <cursoragent@cursor.com>
Use a dedicated service worker for Chrome-compatible desktop notifications, add preference test/toasts, and include related docs and agent config cleanup.

Co-authored-by: Cursor <cursoragent@cursor.com>
Send planned_date for profile calendar grouping so the API allowlist accepts the request, and keep HydrateFallback/LogoSpinner stable across prerender and first paint so the Assigned calendar can load instead of stuck/skeleton states.

Co-authored-by: Cursor <cursoragent@cursor.com>
Surface the profile calendar's planned_at/planned_duration_minutes
data through the public API-token authenticated REST API (/api/v1/),
previously only reachable via the internal SPA API.

- New GET/PATCH/DELETE endpoint at
  workspaces/{slug}/projects/{project_id}/work-items/{issue_id}/user-plan/
  for reading/setting/clearing the calling user's schedule for a work item.
- Read-only planned_at/planned_duration_minutes fields nested on the
  external IssueSerializer, scoped to the requesting token's user and
  populated via a prefetch to avoid N+1 queries.
- OpenAPI docs/examples for the new endpoint and fields.

No migration required; UserIssuePlan already exists.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
…sting devices table (#5)

The 0126_sync_event_device migration introduced a new Device model
(iOS/macOS APNs push tokens) using db_table='devices', which collides
with an existing 'devices' table (web push, different schema) from an
earlier migration. Renaming avoids the CREATE TABLE conflict.

Co-authored-by: Claude Sonnet 5 <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Aug 15, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 307 files, which is 7 over the limit of 300.

To get a review, reduce the PR to 300 files or fewer by splitting it into smaller PRs or changing its base branch.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: 2d4152fe-53c1-4338-9f1d-9cc87d7df0a9

📥 Commits

Reviewing files that changed from the base of the PR and between 1c8a60f and 556cdea.

⛔ Files ignored due to path filters (2)
  • apps/api/uv.lock is excluded by !**/*.lock
  • polaris.db is excluded by !**/*.db
📒 Files selected for processing (307)
  • .claude/skills/branch-name/SKILL.md
  • .claude/skills/create-pull-request/SKILL.md
  • .claude/skills/react-doctor/SKILL.md
  • .claude/skills/release-notes/SKILL.md
  • .claude/skills/translate/SKILL.md
  • .commandcode/taste/taste.md
  • .gitignore
  • .kilo/plans/1786508566602-calendar-click-to-create.md
  • .kilo/plans/1786509236391-hours-drag-select-time.md
  • .kilo/plans/1786510609915-fix-hours-grid-time-offset.md
  • .kilo/plans/1786521002892-calendar-auto-assign-current-user.md
  • .kilo/plans/1786521749691-profile-calendar-hours-click-to-drag-plan.md
  • .kiro/steering/hexagondot-remote-only.md
  • apps/api/plane/api/serializers/__init__.py
  • apps/api/plane/api/serializers/issue.py
  • apps/api/plane/api/urls/work_item.py
  • apps/api/plane/api/views/__init__.py
  • apps/api/plane/api/views/base.py
  • apps/api/plane/api/views/issue.py
  • apps/api/plane/api/views/user_issue_plan.py
  • apps/api/plane/app/serializers/__init__.py
  • apps/api/plane/app/serializers/device.py
  • apps/api/plane/app/serializers/issue.py
  • apps/api/plane/app/serializers/pomodoro.py
  • apps/api/plane/app/serializers/sync_event.py
  • apps/api/plane/app/serializers/time_log.py
  • apps/api/plane/app/urls/__init__.py
  • apps/api/plane/app/urls/issue.py
  • apps/api/plane/app/urls/sync.py
  • apps/api/plane/app/urls/user.py
  • apps/api/plane/app/urls/workspace.py
  • apps/api/plane/app/views/__init__.py
  • apps/api/plane/app/views/analytic/base.py
  • apps/api/plane/app/views/cycle/base.py
  • apps/api/plane/app/views/device.py
  • apps/api/plane/app/views/issue/base.py
  • apps/api/plane/app/views/issue/comment.py
  • apps/api/plane/app/views/issue/time_log.py
  • apps/api/plane/app/views/module/base.py
  • apps/api/plane/app/views/pomodoro.py
  • apps/api/plane/app/views/project/base.py
  • apps/api/plane/app/views/sync.py
  • apps/api/plane/app/views/workspace/time_log.py
  • apps/api/plane/app/views/workspace/user.py
  • apps/api/plane/app/views/workspace/user_issue_plan.py
  • apps/api/plane/app/views/workspace/user_preference.py
  • apps/api/plane/bgtasks/apns_push_task.py
  • apps/api/plane/bgtasks/issue_activities_task.py
  • apps/api/plane/bgtasks/sync_event_task.py
  • apps/api/plane/db/migrations/0123_timelog.py
  • apps/api/plane/db/migrations/0124_pomodoro.py
  • apps/api/plane/db/migrations/0125_userissueplan.py
  • apps/api/plane/db/migrations/0126_sync_event_device.py
  • apps/api/plane/db/migrations/0127_pomodoro_sync_fields.py
  • apps/api/plane/db/models/__init__.py
  • apps/api/plane/db/models/device.py
  • apps/api/plane/db/models/issue.py
  • apps/api/plane/db/models/pomodoro.py
  • apps/api/plane/db/models/sync_event.py
  • apps/api/plane/db/models/time_log.py
  • apps/api/plane/db/models/user.py
  • apps/api/plane/db/models/workspace.py
  • apps/api/plane/settings/common.py
  • apps/api/plane/tests/contract/app/test_issue_time_log_app.py
  • apps/api/plane/tests/contract/app/test_pomodoro_timer_app.py
  • apps/api/plane/tests/contract/app/test_time_log_app.py
  • apps/api/plane/tests/contract/app/test_user_issue_plan_app.py
  • apps/api/plane/tests/unit/bg_tasks/test_sync_event_task.py
  • apps/api/plane/tests/unit/utils/test_order_queryset.py
  • apps/api/plane/utils/grouper.py
  • apps/api/plane/utils/openapi/__init__.py
  • apps/api/plane/utils/openapi/decorators.py
  • apps/api/plane/utils/openapi/examples.py
  • apps/api/plane/utils/order_queryset.py
  • apps/api/plane/utils/user_issue_plan.py
  • apps/api/requirements/base.txt
  • apps/live/src/controllers/index.ts
  • apps/live/src/controllers/sync.controller.ts
  • apps/live/src/services/sync/sync-event.service.ts
  • apps/live/tests/services/sync/sync-event.service.test.ts
  • apps/proxy/Caddyfile.ce
  • apps/space/.gitignore
  • apps/web/.gitignore
  • apps/web/app/(all)/[workspaceSlug]/(projects)/profile/[userId]/header.tsx
  • apps/web/app/(all)/[workspaceSlug]/(projects)/profile/[userId]/mobile-header.tsx
  • apps/web/app/(all)/[workspaceSlug]/(projects)/program-timeline/header.tsx
  • apps/web/app/(all)/[workspaceSlug]/(projects)/program-timeline/layout.tsx
  • apps/web/app/(all)/[workspaceSlug]/(projects)/program-timeline/page.tsx
  • apps/web/app/(all)/[workspaceSlug]/(projects)/sidebar.tsx
  • apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/worklogs/header.tsx
  • apps/web/app/(all)/[workspaceSlug]/(settings)/settings/(workspace)/worklogs/page.tsx
  • apps/web/app/(all)/[workspaceSlug]/(settings)/settings/projects/[projectId]/features/time-tracking/header.tsx
  • apps/web/app/(all)/[workspaceSlug]/(settings)/settings/projects/[projectId]/features/time-tracking/page.tsx
  • apps/web/app/(all)/[workspaceSlug]/layout.tsx
  • apps/web/app/root.tsx
  • apps/web/app/routes/core.ts
  • apps/web/core/components/analytics/tabs.tsx
  • apps/web/core/components/analytics/time-tracking/index.ts
  • apps/web/core/components/analytics/time-tracking/root.tsx
  • apps/web/core/components/analytics/time-tracking/time-tracking-table.tsx
  • apps/web/core/components/analytics/time-tracking/total-tracked-hours.tsx
  • apps/web/core/components/analytics/time-tracking/tracked-by-chart.tsx
  • apps/web/core/components/analytics/time-tracking/tracked-hours-over-time.tsx
  • apps/web/core/components/auth-screens/auth-base.tsx
  • apps/web/core/components/auth-screens/footer.tsx
  • apps/web/core/components/common/logo-spinner.tsx
  • apps/web/core/components/gantt-chart/sidebar/index.ts
  • apps/web/core/components/gantt-chart/sidebar/projects/block.tsx
  • apps/web/core/components/gantt-chart/sidebar/projects/index.ts
  • apps/web/core/components/gantt-chart/sidebar/projects/sidebar.tsx
  • apps/web/core/components/issues/issue-detail/issue-activity/activity-comment-root.tsx
  • apps/web/core/components/issues/issue-detail/issue-activity/root.tsx
  • apps/web/core/components/issues/issue-detail/module-select.tsx
  • apps/web/core/components/issues/issue-detail/planned-schedule-property.tsx
  • apps/web/core/components/issues/issue-detail/root.tsx
  • apps/web/core/components/issues/issue-detail/sidebar.tsx
  • apps/web/core/components/issues/issue-detail/time-log/helper.ts
  • apps/web/core/components/issues/issue-detail/time-log/index.ts
  • apps/web/core/components/issues/issue-detail/time-log/log-work-modal.tsx
  • apps/web/core/components/issues/issue-detail/time-log/time-log-card.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/base-calendar-root.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/calendar.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/day-tile.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/drag-preview.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/dropdowns/months-dropdown.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/dropdowns/options-dropdown.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/header.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/hours-grid.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/hours-issue-block.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/issue-block-root.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/issue-block.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/issue-blocks.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/roots/profile-issues-root.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/unscheduled-strip.tsx
  • apps/web/core/components/issues/issue-layouts/calendar/utils.ts
  • apps/web/core/components/issues/issue-layouts/calendar/week-days.tsx
  • apps/web/core/components/issues/issue-layouts/issue-layout-HOC.tsx
  • apps/web/core/components/issues/peek-overview/properties.tsx
  • apps/web/core/components/issues/peek-overview/root.tsx
  • apps/web/core/components/navigation/top-navigation-root.tsx
  • apps/web/core/components/pomodoro/helper.ts
  • apps/web/core/components/pomodoro/notifications.ts
  • apps/web/core/components/pomodoro/notify-phase-end.ts
  • apps/web/core/components/pomodoro/pomodoro-controls.tsx
  • apps/web/core/components/pomodoro/pomodoro-countdown.tsx
  • apps/web/core/components/pomodoro/pomodoro-header-button.tsx
  • apps/web/core/components/pomodoro/pomodoro-settings-inline.tsx
  • apps/web/core/components/pomodoro/pomodoro-timer.tsx
  • apps/web/core/components/pomodoro/sidebar-indicator.tsx
  • apps/web/core/components/pomodoro/sidebar-pomodoro-timer.tsx
  • apps/web/core/components/profile/profile-issues-filter.tsx
  • apps/web/core/components/profile/profile-issues.tsx
  • apps/web/core/components/profile/sidebar.tsx
  • apps/web/core/components/program-timeline/block.tsx
  • apps/web/core/components/program-timeline/root.tsx
  • apps/web/core/components/program-timeline/utils.ts
  • apps/web/core/components/project/settings/features-list.tsx
  • apps/web/core/components/settings/profile/content/pages/preferences/pomodoro-list.tsx
  • apps/web/core/components/settings/profile/content/pages/preferences/root.tsx
  • apps/web/core/components/settings/project/sidebar/item-icon.tsx
  • apps/web/core/components/settings/workspace/sidebar/item-icon.tsx
  • apps/web/core/components/sidebar/sidebar-wrapper.tsx
  • apps/web/core/components/workspace/sidebar/helper.tsx
  • apps/web/core/components/workspace/sidebar/workspace-menu.tsx
  • apps/web/core/components/workspace/worklogs/export-button.tsx
  • apps/web/core/components/workspace/worklogs/filters.tsx
  • apps/web/core/components/workspace/worklogs/index.ts
  • apps/web/core/components/workspace/worklogs/root.tsx
  • apps/web/core/components/workspace/worklogs/worklogs-table.tsx
  • apps/web/core/hooks/pomodoro/use-pomodoro-timer.ts
  • apps/web/core/hooks/store/use-pomodoro-timer-store.ts
  • apps/web/core/hooks/sync/use-sync-socket.ts
  • apps/web/core/hooks/use-issues-actions.tsx
  • apps/web/core/services/issue/issue_time_log.service.ts
  • apps/web/core/services/pomodoro/pomodoro-timer.service.ts
  • apps/web/core/services/sync/sync-socket.service.ts
  • apps/web/core/services/user.service.ts
  • apps/web/core/services/workspace/time-log.service.ts
  • apps/web/core/store/issue/helpers/base-issues.store.ts
  • apps/web/core/store/issue/helpers/issue-filter-helper.store.ts
  • apps/web/core/store/issue/issue-details/activity.store.ts
  • apps/web/core/store/issue/issue-details/root.store.ts
  • apps/web/core/store/issue/issue-details/time-log.store.ts
  • apps/web/core/store/issue/issue_calendar_view.store.ts
  • apps/web/core/store/issue/profile/issue.store.ts
  • apps/web/core/store/pomodoro/pomodoro-timer.store.ts
  • apps/web/core/store/root.store.ts
  • apps/web/core/store/theme.store.ts
  • apps/web/core/store/timeline/projects-timeline.store.ts
  • apps/web/core/store/timeline/timeline.store.ts
  • apps/web/core/store/user/profile.store.ts
  • apps/web/graphify-out/cache/ast/v0.9.5/0c03d85cefd7b89c15f1f3649bf23c2a53b5757dc69c8ceea809c75a2bedb92b.json
  • apps/web/graphify-out/cache/ast/v0.9.5/2049f52119fee29c677cd67e086dea3449aa2f084780b399f4acb645addf402e.json
  • apps/web/graphify-out/cache/ast/v0.9.5/64b42f98f8f2a4ccac3eaab1f4ff992cb4a0b551d9478ea305c8f7019e524bce.json
  • apps/web/graphify-out/cache/ast/v0.9.5/91d78138ff96fa2791618e4de6d26f67c14f4341171d048eed53db30fbf7c3c1.json
  • apps/web/graphify-out/cache/ast/v0.9.5/fc30c4186e7e6958dadab028b02de81eb8ce6ed9e722b6bc048485e4af31c375.json
  • apps/web/graphify-out/cache/stat-index.json
  • apps/web/public/pomodoro-sw.js
  • docker-compose.yml
  • docs/ai/project-state.md
  • docs/ios-sync-implementation-guide.md
  • docs/sync-api-contract.md
  • graphify-out/.graphify_labels.json
  • graphify-out/.graphify_python
  • graphify-out/.graphify_root
  • graphify-out/GRAPH_REPORT.md
  • graphify-out/cache/stat-index.json
  • graphify-out/cost.json
  • graphify-out/graph.html
  • graphify-out/graph.json
  • graphify-out/manifest.json
  • packages/constants/src/analytics/common.ts
  • packages/constants/src/calendar.ts
  • packages/constants/src/issue/common.ts
  • packages/constants/src/issue/filter.ts
  • packages/constants/src/settings/project.ts
  • packages/constants/src/settings/workspace.ts
  • packages/constants/src/workspace.ts
  • packages/i18n/src/constants/namespaces.ts
  • packages/i18n/src/locales/cs/common.json
  • packages/i18n/src/locales/cs/navigation.json
  • packages/i18n/src/locales/cs/pomodoro.json
  • packages/i18n/src/locales/cs/workspace-settings.json
  • packages/i18n/src/locales/de/common.json
  • packages/i18n/src/locales/de/navigation.json
  • packages/i18n/src/locales/de/pomodoro.json
  • packages/i18n/src/locales/de/workspace-settings.json
  • packages/i18n/src/locales/en/common.json
  • packages/i18n/src/locales/en/navigation.json
  • packages/i18n/src/locales/en/pomodoro.json
  • packages/i18n/src/locales/en/work-item.json
  • packages/i18n/src/locales/en/workspace-settings.json
  • packages/i18n/src/locales/es/common.json
  • packages/i18n/src/locales/es/navigation.json
  • packages/i18n/src/locales/es/pomodoro.json
  • packages/i18n/src/locales/es/workspace-settings.json
  • packages/i18n/src/locales/fr/common.json
  • packages/i18n/src/locales/fr/navigation.json
  • packages/i18n/src/locales/fr/pomodoro.json
  • packages/i18n/src/locales/fr/workspace-settings.json
  • packages/i18n/src/locales/id/common.json
  • packages/i18n/src/locales/id/navigation.json
  • packages/i18n/src/locales/id/pomodoro.json
  • packages/i18n/src/locales/id/workspace-settings.json
  • packages/i18n/src/locales/it/common.json
  • packages/i18n/src/locales/it/navigation.json
  • packages/i18n/src/locales/it/pomodoro.json
  • packages/i18n/src/locales/it/workspace-settings.json
  • packages/i18n/src/locales/ja/common.json
  • packages/i18n/src/locales/ja/navigation.json
  • packages/i18n/src/locales/ja/pomodoro.json
  • packages/i18n/src/locales/ja/workspace-settings.json
  • packages/i18n/src/locales/ko/common.json
  • packages/i18n/src/locales/ko/navigation.json
  • packages/i18n/src/locales/ko/pomodoro.json
  • packages/i18n/src/locales/ko/workspace-settings.json
  • packages/i18n/src/locales/pl/common.json
  • packages/i18n/src/locales/pl/navigation.json
  • packages/i18n/src/locales/pl/pomodoro.json
  • packages/i18n/src/locales/pl/workspace-settings.json
  • packages/i18n/src/locales/pt-BR/common.json
  • packages/i18n/src/locales/pt-BR/navigation.json
  • packages/i18n/src/locales/pt-BR/pomodoro.json
  • packages/i18n/src/locales/pt-BR/workspace-settings.json
  • packages/i18n/src/locales/ro/common.json
  • packages/i18n/src/locales/ro/navigation.json
  • packages/i18n/src/locales/ro/pomodoro.json
  • packages/i18n/src/locales/ro/workspace-settings.json
  • packages/i18n/src/locales/ru/common.json
  • packages/i18n/src/locales/ru/navigation.json
  • packages/i18n/src/locales/ru/pomodoro.json
  • packages/i18n/src/locales/ru/workspace-settings.json
  • packages/i18n/src/locales/sk/common.json
  • packages/i18n/src/locales/sk/navigation.json
  • packages/i18n/src/locales/sk/pomodoro.json
  • packages/i18n/src/locales/sk/workspace-settings.json
  • packages/i18n/src/locales/tr-TR/common.json
  • packages/i18n/src/locales/tr-TR/navigation.json
  • packages/i18n/src/locales/tr-TR/pomodoro.json
  • packages/i18n/src/locales/tr-TR/workspace-settings.json
  • packages/i18n/src/locales/ua/common.json
  • packages/i18n/src/locales/ua/navigation.json
  • packages/i18n/src/locales/ua/pomodoro.json
  • packages/i18n/src/locales/ua/workspace-settings.json
  • packages/i18n/src/locales/vi-VN/common.json
  • packages/i18n/src/locales/vi-VN/navigation.json
  • packages/i18n/src/locales/vi-VN/pomodoro.json
  • packages/i18n/src/locales/vi-VN/workspace-settings.json
  • packages/i18n/src/locales/zh-CN/common.json
  • packages/i18n/src/locales/zh-CN/navigation.json
  • packages/i18n/src/locales/zh-CN/pomodoro.json
  • packages/i18n/src/locales/zh-CN/workspace-settings.json
  • packages/i18n/src/locales/zh-TW/common.json
  • packages/i18n/src/locales/zh-TW/navigation.json
  • packages/i18n/src/locales/zh-TW/pomodoro.json
  • packages/i18n/src/locales/zh-TW/workspace-settings.json
  • packages/types/src/analytics.ts
  • packages/types/src/index.ts
  • packages/types/src/issues/activity/base.ts
  • packages/types/src/issues/activity/time_log.ts
  • packages/types/src/issues/issue.ts
  • packages/types/src/pomodoro/timer.ts
  • packages/types/src/project/projects.ts
  • packages/types/src/settings.ts
  • packages/types/src/users.ts
  • packages/types/src/view-props.ts
  • packages/ui/src/modals/modal-core.tsx

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant