query introspection client test

This commit is contained in:
Tim Möhlmann
2023-11-14 22:18:14 +02:00
parent c7d571889c
commit ec65673e41
3 changed files with 109 additions and 8 deletions

View File

@@ -18,6 +18,6 @@ keys as (
and expiration > current_timestamp
group by identifier
)
select apps.project_id, config.client_secret, keys.public_keys from config
select config.client_id, config.client_secret, apps.project_id, keys.public_keys from config
join projections.apps5 apps on apps.id = config.app_id
left join keys on keys.client_id = config.client_id;