-
Notifications
You must be signed in to change notification settings - Fork 0
New User Flow
Okke Harsta edited this page Dec 1, 2025
·
6 revisions
flowchart TD
Start([Start]) --> CheckMembership{User has organization membership?}
CheckMembership -->|Yes| End([End])
CheckMembership -->|No| CheckUserType{Is user external?}
CheckUserType -->|Yes| AskChoice{User wants to create or join?}
AskChoice -->|Create| CreateOrg[Create new organization]
AskChoice -->|Join| RequestJoin[Request to join existing organization]
CreateOrg --> End
RequestJoin --> AdminReview{Admin accepts request?}
AdminReview -->|Yes| AddMember[Add user to organization as member]
AdminReview -->|No| End
AddMember --> End
CheckUserType -->|No - Internal| AddGuest[Add user to pre-provisioned organization as guest]
AddGuest --> End