From 4f75d9b561354bfc34af15ddebef07a64192b75f Mon Sep 17 00:00:00 2001 From: Iraq Jaber Date: Mon, 28 Jul 2025 09:24:47 +0100 Subject: [PATCH] fixup! fixup! fixup! fixup! added first event --- backend/v3/storage/database/repository/id_provider.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/v3/storage/database/repository/id_provider.go b/backend/v3/storage/database/repository/id_provider.go index db343a00d1..be5560de09 100644 --- a/backend/v3/storage/database/repository/id_provider.go +++ b/backend/v3/storage/database/repository/id_provider.go @@ -23,8 +23,8 @@ func IDProviderRepository(client database.QueryExecutor) domain.IDProviderReposi } } -const queryIDProviderStmt = `SELECT instance_id, org_id, id, state, name, type, allow_creation, allow_auto_creation,` + - ` allow_auto_update, allow_linking, styling_type, payload, created_at, updated_at` + +const queryIDProviderStmt = `SELECT instance_id, org_id, id, state, name, type, auto_register, allow_creation, allow_auto_creation,` + + ` allow_auto_update, allow_linking, allow_auto_linking, styling_type, payload, created_at, updated_at` + ` FROM zitadel.identity_providers` func (i *idProvider) Get(ctx context.Context, id domain.IDPIdentifierCondition, instanceID string, orgID *string) (*domain.IdentityProvider, error) {