Add role management

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-11-07 09:20:38 +01:00
parent 696adb7d79
commit 21c4b7cd9d
143 changed files with 5976 additions and 2094 deletions

View File

@@ -31,6 +31,7 @@ import (
type (
Control struct {
ID gid.GID `db:"id"`
OrganizationID gid.GID `db:"organization_id"`
SectionTitle string `db:"section_title"`
FrameworkID gid.GID `db:"framework_id"`
Name string `db:"name"`
@@ -127,6 +128,7 @@ WITH ctrl AS (
c.id,
c.section_title,
c.framework_id,
c.organization_id,
c.tenant_id,
c.name,
c.description,
@@ -146,6 +148,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -236,6 +239,7 @@ WITH ctrl AS (
c.id,
c.section_title,
c.framework_id,
c.organization_id,
c.tenant_id,
c.name,
c.description,
@@ -255,6 +259,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -351,6 +356,7 @@ WITH ctrl AS (
c.id,
c.section_title,
c.framework_id,
c.organization_id,
c.tenant_id,
c.name,
c.description,
@@ -376,6 +382,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -455,6 +462,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -548,6 +556,7 @@ WITH ctrl AS (
c.id,
c.section_title,
c.framework_id,
c.organization_id,
c.tenant_id,
c.name,
c.description,
@@ -567,6 +576,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -613,6 +623,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -661,6 +672,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -707,6 +719,7 @@ INSERT INTO
controls (
tenant_id,
id,
organization_id,
framework_id,
section_title,
name,
@@ -719,6 +732,7 @@ INSERT INTO
VALUES (
@tenant_id,
@control_id,
@organization_id,
@framework_id,
@section_title,
@name,
@@ -733,6 +747,7 @@ VALUES (
args := pgx.StrictNamedArgs{
"tenant_id": scope.GetTenantID(),
"control_id": c.ID,
"organization_id": c.OrganizationID,
"framework_id": c.FrameworkID,
"section_title": c.SectionTitle,
"name": c.Name,
@@ -884,6 +899,7 @@ WITH ctrl AS (
c.id,
c.section_title,
c.framework_id,
c.organization_id,
c.tenant_id,
c.name,
c.description,
@@ -903,6 +919,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,
@@ -994,6 +1011,7 @@ WITH ctrl AS (
c.id,
c.section_title,
c.framework_id,
c.organization_id,
c.tenant_id,
c.name,
c.description,
@@ -1013,6 +1031,7 @@ SELECT
id,
section_title,
framework_id,
organization_id,
name,
description,
status,