fix(frontend): restore member self-assignment for shifts and tasks
All checks were successful
CI Pipeline / Backend Build & Test (push) Successful in 1m12s
CI Pipeline / Frontend Lint, Test & Build (push) Successful in 35s
CI Pipeline / Infrastructure Validation (push) Successful in 4s
CI Pipeline / Backend Build & Test (pull_request) Successful in 52s
CI Pipeline / Frontend Lint, Test & Build (pull_request) Successful in 33s
CI Pipeline / Infrastructure Validation (pull_request) Successful in 4s
All checks were successful
CI Pipeline / Backend Build & Test (push) Successful in 1m12s
CI Pipeline / Frontend Lint, Test & Build (push) Successful in 35s
CI Pipeline / Infrastructure Validation (push) Successful in 4s
CI Pipeline / Backend Build & Test (pull_request) Successful in 52s
CI Pipeline / Frontend Lint, Test & Build (pull_request) Successful in 33s
CI Pipeline / Infrastructure Validation (pull_request) Successful in 4s
Root Cause: - Shift: Next.js 16.1.6 incompatible rewrite pattern caused runtime SyntaxError - Task: Missing self-assignment UI for member role Fix: - Updated next.config.ts rewrite pattern from regex to wildcard syntax - Added "Assign to Me" button to task detail page with useSession integration - Added test coverage for self-assignment behavior with session mocks Testing: - Lint: ✅ PASS (ESLint v9) - Tests: ✅ 47/47 PASS (Vitest v4.0.18) - Build: ✅ PASS (Next.js 16.1.6, 12 routes) Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -6,7 +6,7 @@ const nextConfig: NextConfig = {
|
||||
const apiUrl = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:5001';
|
||||
return [
|
||||
{
|
||||
source: '/api/:path((?!auth).*)',
|
||||
source: '/api/:path*',
|
||||
destination: `${apiUrl}/api/:path*`,
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user