Pagination Hook (#3494)

* Backend changes for pagination hook + Paginated users table

* Frontend changes for pagination hook

* Fix invited users endpoint

* Fix layout shift & add enter to submit user invites

* mypy

* Cleanup

* Resolve PR concerns & remove UserStatus

* Fix errors

---------

Co-authored-by: hagen-danswer <hagen@danswer.ai>
This commit is contained in:
skylares
2025-01-03 17:32:55 -05:00
committed by GitHub
parent 66f9124135
commit c191e23256
36 changed files with 1237 additions and 644 deletions

View File

@ -43,17 +43,11 @@ logger = getLogger(__name__)
# GLOBAL_CURATOR = "global_curator"
# class UserStatus(str, Enum):
# LIVE = "live"
# INVITED = "invited"
# DEACTIVATED = "deactivated"
# class FullUserSnapshot(BaseModel):
# id: UUID
# email: str
# role: UserRole
# status: UserStatus
# is_active: bool
# class InvitedUserSnapshot(BaseModel):