mirror of
https://github.com/logto-io/logto.git
synced 2024-12-30 20:33:54 -05:00
fix(cloud): remove redundant field (#3519)
This commit is contained in:
parent
d0a5537b31
commit
1f374b87df
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ export const createConnectorsQuery = (client: Queryable<PostgreSql>) => {
|
|||
const findAllConnectors = async (tenantId: string) => {
|
||||
const { rows } = await client.query<Connector>(sql`
|
||||
select id, sync_profile as "syncProfile",
|
||||
config, metadata, storage, connector_id as "connectorId",
|
||||
config, metadata, connector_id as "connectorId",
|
||||
created_at as "createdAt"
|
||||
from connectors
|
||||
where tenant_id=${tenantId}
|
||||
|
|
Loading…
Reference in a new issue