Skip to content

Commit

Permalink
chore: change sorting order
Browse files Browse the repository at this point in the history
  • Loading branch information
illfixit committed Dec 2, 2024
1 parent 529a7d0 commit 3f56835
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ class ConnectorService(

return dsl.selectFrom(c)
.where(c.ORGANIZATION_ID.eq(organizationId).and(c.ENVIRONMENT.eq(environmentId)))
.orderBy(c.CREATED_AT.asc())
.orderBy(c.CONNECTOR_ID.asc())
.fetch()
}

Expand All @@ -132,7 +132,7 @@ class ConnectorService(

return dsl.selectFrom(c)
.where(c.ORGANIZATION_ID.eq(organizationId))
.orderBy(c.CREATED_AT.asc())
.orderBy(c.CONNECTOR_ID.asc())
.fetch()
}

Expand All @@ -141,7 +141,7 @@ class ConnectorService(

return dsl.selectFrom(c)
.where(c.PROVIDER_ORGANIZATION_ID.eq(organizationId).and(c.ENVIRONMENT.eq(environmentId)))
.orderBy(c.CREATED_AT.asc())
.orderBy(c.CONNECTOR_ID.asc())
.fetch()
}

Expand All @@ -150,7 +150,7 @@ class ConnectorService(

return dsl.selectFrom(c)
.where(c.ENVIRONMENT.eq(environment))
.orderBy(c.CREATED_AT.asc())
.orderBy(c.CONNECTOR_ID.asc())
.fetch()
}

Expand Down

0 comments on commit 3f56835

Please sign in to comment.