Commit Graph

280 Commits

Author SHA1 Message Date
Abhimanyu Saharan
79f7ad8ba3 refactor: add descriptive comments for various response payload interfaces 2026-02-10 00:17:21 +05:30
Abhimanyu Saharan
55d4c482bc refactor: implement user deletion functionality and enhance settings management 2026-02-10 00:17:06 +05:30
Abhimanyu Saharan
d9f560ee0c refactor: streamline code formatting and enhance test organization mocks 2026-02-09 23:58:54 +05:30
Abhimanyu Saharan
6f76e430f4 refactor: enhance onboarding logic and update default redirect path 2026-02-09 22:20:19 +05:30
Abhimanyu Saharan
f8860bbc71 refactor: introduce TASK_SOUL.md for task-specific behavior and update related documentation 2026-02-09 22:16:57 +05:30
Abhimanyu Saharan
e19e47106b feat: add sign-out redirect URL and enhance sign-in redirect handling 2026-02-09 01:07:36 +05:30
Abhimanyu Saharan
5630f9b8e8 feat: add sign-out redirect URL and enhance sign-in redirect handling 2026-02-09 01:06:33 +05:30
Abhimanyu Saharan
8c4bcca603 refactor: clean up code formatting and improve readability in various files 2026-02-09 00:29:26 +05:30
Abhimanyu Saharan
bb5a8482f3 feat: add endpoint to remove organization members with access cleanup 2026-02-09 00:26:49 +05:30
Abhimanyu Saharan
b9d2603fde feat: implement organization deletion with cascading cleanup of associated resources 2026-02-09 00:22:37 +05:30
Abhimanyu Saharan
05c0f851f6 feat: replace DashboardShell with DashboardPageLayout for improved layout consistency 2026-02-09 00:16:48 +05:30
Abhimanyu Saharan
3a1cd654f1 feat: replace Dialog component with ConfirmActionDialog for improved confirmation handling 2026-02-09 00:12:58 +05:30
Abhimanyu Saharan
9a8fd3558d feat: replace DashboardShell and SignedOut/SignedIn components with DashboardPageLayout for improved structure and state handling 2026-02-09 00:10:35 +05:30
Abhimanyu Saharan
746b909ed6 feat: add TableLoadingRow and TableEmptyStateRow components for improved table state handling 2026-02-09 00:07:01 +05:30
Abhimanyu Saharan
1340e00b61 feat: extract timestamp formatting and text truncation into separate utility functions 2026-02-09 00:02:43 +05:30
Abhimanyu Saharan
5ea9719c13 feat: introduce DashboardPageLayout component to streamline page structure and improve layout consistency 2026-02-08 23:58:55 +05:30
Abhimanyu Saharan
a4aced9a88 feat: refactor organization membership logic and simplify admin role checks 2026-02-08 23:49:34 +05:30
Abhimanyu Saharan
840d5a050f feat: refactor sign-in prompts to use SignedOutPanel component 2026-02-08 23:40:11 +05:30
Abhimanyu Saharan
86d93d94fe feat: refactor authentication panels and add AdminOnlyNotice component 2026-02-08 23:30:24 +05:30
Abhimanyu Saharan
03317f0baf feat(gateway): refactor gateway form and connection check logic 2026-02-08 23:27:03 +05:30
Abhimanyu Saharan
8aef9207bd Merge pull request #65 from abhi1693/fix/pr48-test-types
Fix vitest matcher typings in frontend tests
2026-02-08 23:11:58 +05:30
openclaw-mission-control bot
0b21dadf0c test(frontend): import vitest to stabilize typings 2026-02-08 17:38:24 +00:00
Abhimanyu Saharan
681730f3fd Merge pull request #48 from abhi1693/anya/frontend-coverage-slice-1
Frontend coverage slice 1: ActivityFeed component tests (loading/success/error/empty)
2026-02-08 23:07:44 +05:30
Abhimanyu Saharan
3f556802a9 Merge branch 'master' into feat/organizations 2026-02-08 21:30:25 +05:30
Abhimanyu Saharan
8c12add7d7 feat: enhance invite page with loading state and refactor access management logic 2026-02-08 21:27:19 +05:30
Abhimanyu Saharan
3244900d06 feat: update board form layout and improve input handling for better user experience 2026-02-08 21:18:12 +05:30
Abhimanyu Saharan
60744ddfac refactor: clean up code formatting and improve readability across multiple files 2026-02-08 21:17:26 +05:30
Abhimanyu Saharan
e03125a382 feat: add organization-related models and update schemas for organization management 2026-02-08 21:16:26 +05:30
Abhimanyu Saharan
698cb19dd8 E2E: remove auth bypass; use real Clerk sign-in
Merges PR #49. CI: https://github.com/abhi1693/openclaw-mission-control/actions/runs/21800456912
2026-02-08 20:56:01 +05:30
Ishaan (OpenClaw)
5fde02165a Revert "Make /activity public so signed-out UI renders"
This reverts commit 5419f01d54.
2026-02-08 13:57:16 +00:00
Ishaan (OpenClaw)
5419f01d54 Make /activity public so signed-out UI renders 2026-02-08 13:45:48 +00:00
Ishaan (OpenClaw)
4c4d707c32 Fix Clerk proxy middleware build 2026-02-08 13:39:39 +00:00
Kunal
6692ed3ba5 fix(frontend): remove middleware.ts (use proxy.ts only) 2026-02-07 21:00:36 +00:00
Kunal
0fe9d8f79a fix(frontend): await auth() in clerkMiddleware callback 2026-02-07 20:43:14 +00:00
Abhimanyu Saharan
8422b0ca01 feat: enhance approvals panel with board labels and improved empty state display 2026-02-08 01:39:23 +05:30
Ishaan (OpenClaw)
7b4c40ae0b fix(auth): use redirectToSignIn in Clerk middleware 2026-02-07 20:04:23 +00:00
Arjun (OpenClaw)
ed2556c871 fix(frontend): await auth() before protect
Fix TS2339 by awaiting Clerk auth() (returns Promise<SessionAuthWithRedirect>) before calling protect().
2026-02-07 19:55:29 +00:00
Kunal
fce12698d8 fix(frontend): call auth().protect() in Clerk middleware 2026-02-07 19:41:37 +00:00
Arjun (OpenClaw)
9184ebed25 fix(frontend): satisfy Clerk auth() types in middleware
Avoid calling protect() on a Promise by awaiting auth() first.
2026-02-07 19:36:52 +00:00
Arjun (OpenClaw)
260e0815a8 fix(frontend): await auth().protect in middleware
Clerk middleware auth() is async in current types; await protect() to satisfy TS and avoid runtime issues.
2026-02-07 19:34:21 +00:00
Ishaan (OpenClaw)
05a83b765b fix(auth): enable Clerk middleware and make /sign-in public 2026-02-07 19:31:53 +00:00
abhi1693
a2627e36b0 E2E: make /sign-in catch-all and public in Clerk middleware 2026-02-07 19:30:21 +00:00
Arjun (OpenClaw)
52fcde5be8 Merge remote-tracking branch 'origin/master' into kunal/remove-e2e-auth-bypass 2026-02-07 19:25:41 +00:00
Abhimanyu Saharan
527cc13c63 refactor: improve code formatting and readability across multiple files 2026-02-08 00:46:15 +05:30
Abhimanyu Saharan
fa5b7dd271 feat: remove unused lead agent attributes from onboarding chat 2026-02-08 00:46:15 +05:30
Abhimanyu Saharan
40b0be7540 feat: add board group integration to boards page 2026-02-08 00:46:15 +05:30
Abhimanyu Saharan
91e4c069cc feat: enhance agent identity profile with purpose and personality attributes 2026-02-08 00:46:15 +05:30
abhi1693
33b413ebde E2E: implement /sign-in page with Clerk SignIn 2026-02-07 19:10:10 +00:00
abhi1693
8a2f792541 E2E: add /sign-in redirect; use it in Clerk Cypress login helper 2026-02-07 19:06:47 +00:00
Riya
6645b49a7c Merge master into kunal/remove-e2e-auth-bypass 2026-02-07 17:48:03 +00:00