Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GUACAMOLE-538: Document the system-level AUDIT permission. #254

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
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
21 changes: 13 additions & 8 deletions src/jdbc-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -1787,14 +1787,19 @@ The `guacamole_system_permission` table contains the following columns:
or user group owning this permission.

`permission`
: The permission being granted. This column can have one of six possible
values: `ADMINISTER`, which grants the ability to administer the entire
system (essentially a wildcard permission), `CREATE_CONNECTION`, which
grants the ability to create connections, `CREATE_CONNECTION_GROUP`, which
grants the ability to create connections groups, `CREATE_SHARING_PROFILE`,
which grants the ability to create sharing profiles, `CREATE_USER`, which
grants the ability to create users, or `CREATE_USER_GROUP`, which grants
the ability to create user groups.
: The permission being granted. This column can have one of seven possible
values:
* `ADMINISTER`, which grants the ability to administer the entire
system (essentially a wildcard permission).
* `AUDIT`, which allows a user to see login records and connection
history across the entire system.
* `CREATE_CONNECTION`, which grants the ability to create connections.
* `CREATE_CONNECTION_GROUP`, which grants the ability to create connections
groups.
* `CREATE_SHARING_PROFILE`, which grants the ability to create sharing
profiles.
* `CREATE_USER`, which grants the ability to create users.
* `CREATE_USER_GROUP`, which grants the ability to create user groups.

(jdbc-auth-schema-user-permissions)=

Expand Down
Loading