feat(enterprise/coderd): allow system users to be added to groups (#19518)

closes https://github.com/coder/coder/issues/18274

This pull request makes system users visible in various group related
queries so that they can be added to and removed from groups. This
allows system user quotas to be configured. System users are still
ignored in certain queries, such as when license seat consumption is
determined.

This pull request further ensures the existence of a
"coder_prebuilt_workspaces" group in any organization that needs
prebuilt workspaces

---------

Co-authored-by: Susana Ferreira <susana@coder.com>
This commit is contained in:
Sas Swart
2025-08-27 16:57:59 +02:00
committed by GitHub
co-authored by Susana Ferreira
parent dbc6c980b9
commit 4e9ee80882
9 changed files with 688 additions and 277 deletions
@@ -89,6 +89,8 @@ WHERE
organization_id = @organization_id
ELSE true
END
-- Filter by system type
AND CASE WHEN @include_system::bool THEN TRUE ELSE is_system = false END
ORDER BY
-- Deterministic and consistent ordering of all users. This is to ensure consistent pagination.
LOWER(username) ASC OFFSET @offset_opt