forked from TracecatHQ/tracecat
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Organization users management (TracecatHQ#575)
- Loading branch information
1 parent
ce5f227
commit 95c70da
Showing
16 changed files
with
957 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
"use client" | ||
|
||
import { OrgMembersTable } from "@/components/organization/org-members-table" | ||
|
||
export default function MembersPage() { | ||
return ( | ||
<div className="size-full overflow-auto"> | ||
<div className="container flex h-full max-w-[1000px] flex-col space-y-12"> | ||
<div className="flex w-full"> | ||
<div className="items-start space-y-3 text-left"> | ||
<h2 className="text-2xl font-semibold tracking-tight"> | ||
Organization Members | ||
</h2> | ||
<p className="text-md text-muted-foreground"> | ||
View all organization members here. | ||
</p> | ||
</div> | ||
<div className="ml-auto flex items-center space-x-2"></div> | ||
</div> | ||
<div className="space-y-4"> | ||
<> | ||
<h6 className="text-sm font-semibold">Manage Members</h6> | ||
<OrgMembersTable /> | ||
</> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.