Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into laurent/env-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentluce committed Aug 26, 2024
2 parents 9813bd8 + 3d0d2da commit 9792d17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.21](https://github.com/kurtosis-tech/kardinal-kontrol/compare/0.1.20...0.1.21) (2024-08-26)


### Miscellaneous Chores

* release 0.1.21 ([ae515ae](https://github.com/kurtosis-tech/kardinal-kontrol/commit/ae515aeff9762d38987e75a0e8018121e422eb5a))

## 0.1.20 (2024-08-24)


Expand Down
2 changes: 1 addition & 1 deletion kontrol-service/database/tenant.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func (db *Db) GetTenant(
tenantId string,
) (*Tenant, error) {
var tenant Tenant
result := db.db.Where("tenant_id = ?", tenantId).First(&tenant)
result := db.db.Where("tenant_id = ?", tenantId).Preload("Flows").Preload("Templates").First(&tenant)
if result.Error != nil {
if result.Error == gorm.ErrRecordNotFound {
return nil, nil
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.20
0.1.21

0 comments on commit 9792d17

Please sign in to comment.