IAM: Add the external field to the TeamBinding spec (#112382)

* add the external field to the TeamBinding spec

* fix unit tests
This commit is contained in:
Mihai Doarna
2025-10-15 11:21:33 +03:00
committed by GitHub
parent 2b4292fcfd
commit 54c224dae7
20 changed files with 303 additions and 33 deletions
@@ -1,4 +1,4 @@
SELECT tm.id as id, t.uid as team_uid, t.id as team_id, u.uid as user_uid, u.id as user_id, tm.created, tm.updated, tm.permission
SELECT tm.id as id, t.uid as team_uid, t.id as team_id, u.uid as user_uid, u.id as user_id, tm.created, tm.updated, tm.permission, tm.external
FROM {{ .Ident .TeamMemberTable }} tm
INNER JOIN {{ .Ident .TeamTable }} t ON tm.team_id = t.id
INNER JOIN {{ .Ident .UserTable }} u ON tm.user_id = u.id