Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
docs: Add initial docs to groups and rbac
  • Loading branch information
BrunoQuaresma authored and bpmct committed Oct 11, 2022
commit 79a2f8586a7b639f4cae52a70d53ea4551efba7f
7 changes: 7 additions & 0 deletions docs/admin/groups.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# User Groups

Groups are helpful to define a set of common permissions for a group of users. It can be used with [RBAC](../rbac.md) to have a better access control.

## Enabling this feature

This feature is auto enabled for all enterprise deployments. Admins may contact us to purchase a license [here](https://coder.com/contact?note=I%20want%20to%20upgrade%20my%20license).
17 changes: 17 additions & 0 deletions docs/admin/rbac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Role Based Access Control (RBAC)

RBAC helps admins to control what their users and [groups](./groups.md) can access.

> **Note**:
> Right now, the only resource type where an admin can use RBAC is [Template](../templates.md) but we are planning to extend this capability to other resource types as well.

## Permissions

You can set the following permissions:

- **Admin**. Can edit and remove the resource including the permissions.
- **View**. Can only read and access the resource.

## Enabling this feature

This feature is auto enabled for all enterprise deployments. Admins may contact us to purchase a license [here](https://coder.com/contact?note=I%20want%20to%20upgrade%20my%20license).
2 changes: 1 addition & 1 deletion site/src/pages/GroupsPage/GroupsPageView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export const GroupsPageView: React.FC<GroupsPageViewProps> = ({
</Link>
<Link
underline="none"
href="https://coder.com/docs/coder-oss/latest/admin/upgrade"
href="https://coder.com/docs/coder-oss/latest/admin/groups"
target="_blank"
rel="noreferrer"
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const TemplatePermissionsPage: FC<
</Link>
<Link
underline="none"
href="https://coder.com/docs/coder-oss/latest/admin/upgrade"
href="https://coder.com/docs/coder-oss/latest/admin/rbac"
target="_blank"
rel="noreferrer"
>
Expand Down