Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
c730693
feat: remove team plan whitelist restrictions
AnthonyRonning Jul 1, 2025
5bc6796
feat: add team management API functions and types
AnthonyRonning Jul 1, 2025
28e3ca1
docs: update team management flow to use AccountMenu integration
AnthonyRonning Jul 1, 2025
6ea2682
feat: add team management integration to AccountMenu
AnthonyRonning Jul 1, 2025
216a43d
fix: remove unnecessary team status polling
AnthonyRonning Jul 1, 2025
2beffce
feat: implement self-service team management UI
AnthonyRonning Jul 1, 2025
9e48878
feat: add invite acceptance flow and improve error handling
AnthonyRonning Jul 1, 2025
1a21f5b
fix: improve team management UX and permissions
AnthonyRonning Jul 1, 2025
66208cc
fix: improve team management UI for mobile responsiveness
AnthonyRonning Jul 2, 2025
e9d37c3
feat: redirect to team management after successful team plan purchase
AnthonyRonning Jul 3, 2025
bea32a1
fix: handle team plan redirect from pricing page success flow
AnthonyRonning Jul 3, 2025
2542fe8
fix: prevent team_setup=false from appearing in URL
AnthonyRonning Jul 3, 2025
8a3e744
fix: prevent error message flash in team invite dialog
AnthonyRonning Jul 3, 2025
2d48611
fix: prevent error flash and clear state properly in team invite dialog
AnthonyRonning Jul 3, 2025
88d6f36
fix: redirect to signup instead of login for team invites
AnthonyRonning Jul 3, 2025
e15d7b3
fix: remove duplicate member stats from team dashboard
AnthonyRonning Jul 3, 2025
fe14eec
fix: change seat usage progress bar to always show emerald color
AnthonyRonning Jul 3, 2025
1c93cd7
feat: add manage subscription link when no team seats available
AnthonyRonning Jul 3, 2025
fd26aed
fix: improve manage subscription button layout in invite dialog
AnthonyRonning Jul 3, 2025
c0daad4
feat: add team name editing functionality
AnthonyRonning Jul 3, 2025
a9150ff
fix: add loading indicator while saving team name
AnthonyRonning Jul 3, 2025
5d28376
feat: show team name in account dropdown and hide billing status for …
AnthonyRonning Jul 3, 2025
8b8c5fb
fix: address PR review comments for team management
AnthonyRonning Jul 8, 2025
6beae4e
fix: address additional PR review comments
AnthonyRonning Jul 8, 2025
7d5cbe9
Remove wip docs
AnthonyRonning Jul 9, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 111 additions & 0 deletions .repo_ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
# Global ignore defaults
**/node_modules/
**/.npm/
**/__pycache__/
**/.pytest_cache/
**/.mypy_cache/

# Build caches
**/.gradle/
**/.nuget/
**/.cargo/
**/.stack-work/
**/.ccache/

# IDE and Editor caches
**/.idea/
**/.vscode/
**/*.swp
**/*~

# Temp files
**/*.tmp
**/*.temp
**/*.bak

**/*.meta
**/package-lock.json


# Dependencies
node_modules/
frontend/node_modules/
Comment thread
AnthonyRonning marked this conversation as resolved.

# Build outputs
/frontend/dist/
/frontend/build/

# Environment variables
.env
.env.local
.env.*.local
*.key

# IDE files
.vscode/
.idea/

# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Operating system files
.DS_Store
Thumbs.db

# JavaScript
package-lock.json

# tests
/tests/test-results/
/tests/playwright-report/
/tests/blob-report/
/tests/playwright/.cache/

# Python
__pycache__/
*.py[cod]
*$py.class
*.pyc

# BrowserUse test artifacts
/tests/browseruse/logs/
/tests/browseruse/*.json
/tests/browseruse/*.png
/tests/browseruse/test_summary.txt


# Logs
frontend/logs
frontend/*.log
frontend/npm-debug.log*
frontend/yarn-debug.log*
frontend/yarn-error.log*
frontend/pnpm-debug.log*
frontend/lerna-debug.log*

frontend/dist
frontend/dist-ssr
Comment thread
AnthonyRonning marked this conversation as resolved.
frontend/*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.million

# Build caching apparently?
*.tsbuildinfo

**/.claude/settings.local.json

frontend/src-tauri
.venv/
Loading