Verified Commit c24b2b97 authored by Michael Angelo Rivera's avatar Michael Angelo Rivera Committed by GitLab
Browse files

fix(query-engine): per-entity role scoping for authz

parent 97daf4fd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8277,6 +8277,7 @@ dependencies = [
 "serde",
 "serde_json",
 "serde_yaml",
 "strum 0.28.0",
]

[[package]]
+1 −1
Original line number Diff line number Diff line
13
14
+1 −1
Original line number Diff line number Diff line
-- SCHEMA_VERSION=13 [AUTOGENERATED — DO NOT EDIT MANUALLY]
-- SCHEMA_VERSION=14 [AUTOGENERATED — DO NOT EDIT MANUALLY]
-- Regenerate with: mise schema:generate:ddl

CREATE TABLE IF NOT EXISTS checkpoint (
+1 −1
Original line number Diff line number Diff line
-- SCHEMA_VERSION=13 [AUTOGENERATED — DO NOT EDIT MANUALLY]
-- SCHEMA_VERSION=14 [AUTOGENERATED — DO NOT EDIT MANUALLY]
-- Regenerate with: mise schema:generate:ddl:local

CREATE TABLE IF NOT EXISTS gl_definition (
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@ redaction:
  resource_type: security_finding
  id_column: id
  ability: read_security_resource
  required_role: security_manager

properties:
  id:
Loading