Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ export const AuthzEntityMembership: NodeTypeDefinition = {
format: 'column-ref',
description: 'Column name referencing the entity (e.g., entity_id, org_id)'
},
sel_field: {
type: 'string',
description: 'SPRT column to select for the entity match',
default: 'entity_id'
},
membership_type: {
type: [
'integer',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ export const AuthzRelatedEntityMembership: NodeTypeDefinition = {
format: 'column-ref',
description: 'Column name on protected table referencing the join table'
},
sel_field: {
type: 'string',
description: 'SPRT column to select for the entity match',
default: 'entity_id'
},
sprt_join_field: {
type: 'string',
description: 'SPRT column to join on with the related table',
default: 'entity_id'
},
membership_type: {
type: [
'integer',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ export const AuthzRelatedPeerOwnership: NodeTypeDefinition = {
obj_ref_field: {
type: 'string',
format: 'column-ref',
description: 'Field on related table to select for matching entity_field (defaults to id)'
description: 'Field on related table to select for matching entity_field',
default: 'id'
},
permission: {
type: 'string',
Expand Down
Loading