Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45940a0

Browse files
committed
make gen
1 parent 0dda06c commit 45940a0

File tree

5 files changed

+16
-10
lines changed

5 files changed

+16
-10
lines changed

coderd/database/dump.sql

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/models.go

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries.sql.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/templateversions.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1732,7 +1732,10 @@ func (api *API) postTemplateVersionsByOrganization(rw http.ResponseWriter, r *ht
17321732
},
17331733
// appease the exhaustruct linter
17341734
// TODO: set this to whether the template version defines a `coder_ai_task` tf resource
1735-
HasAITask: false,
1735+
HasAITask: sql.NullBool{
1736+
Bool: false,
1737+
Valid: false,
1738+
},
17361739
})
17371740
if err != nil {
17381741
if database.IsUniqueViolation(err, database.UniqueTemplateVersionsTemplateIDNameKey) {

coderd/wsbuilder/wsbuilder.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,10 @@ func (b *Builder) buildTx(authFunc func(action policy.Action, object rbac.Object
427427
},
428428
// appease the exhaustruct linter
429429
// TODO: set this to whether the build included a `coder_ai_task` tf resource
430-
HasAITask: false,
430+
HasAITask: sql.NullBool{
431+
Bool: false,
432+
Valid: false,
433+
},
431434
})
432435
if err != nil {
433436
code := http.StatusInternalServerError

0 commit comments

Comments
 (0)