Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
:)
  • Loading branch information
aslilac committed Mar 20, 2025
commit f86d7fe0d199a89f631f30be4fc0b965872927ab
4 changes: 2 additions & 2 deletions coderd/database/dump.sql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions coderd/database/models.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 18 additions & 18 deletions coderd/database/queries.sql.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion coderd/provisionerdserver/provisionerdserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -1407,7 +1407,7 @@ func (s *server) CompleteJob(ctx context.Context, completed *proto.CompletedJob)
err = s.Database.UpdateTemplateVersionExternalAuthProvidersByJobID(ctx, database.UpdateTemplateVersionExternalAuthProvidersByJobIDParams{
JobID: jobID,
ExternalAuthProviders: json.RawMessage(externalAuthProvidersMessage),
ImportGraph: string(jobType.TemplateImport.Plan),
CachedPlan: jobType.TemplateImport.Plan,
UpdatedAt: s.timeNow(),
})
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion enterprise/audit/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ var auditableResourcesTypes = map[any]map[string]Action{
"created_by_username": ActionIgnore,
"archived": ActionTrack,
"source_example_id": ActionIgnore, // Never changes.
"import_graph": ActionIgnore, // Not helpful because this can only change when new versions are added, and is very large.
"cached_plan": ActionIgnore, // Controlled by the system, and incredibly large; would just add noise.
},
&database.User{}: {
"id": ActionTrack,
Expand Down