We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
created_at
1 parent 3ab5a51 commit 41ca6e4Copy full SHA for 41ca6e4
coderd/telemetry/telemetry.go
@@ -624,6 +624,7 @@ func ConvertWorkspaceResource(resource database.WorkspaceResource) WorkspaceReso
624
return WorkspaceResource{
625
ID: resource.ID,
626
JobID: resource.JobID,
627
+ CreatedAt: resource.CreatedAt,
628
Transition: resource.Transition,
629
Type: resource.Type,
630
InstanceType: resource.InstanceType.String,
@@ -833,6 +834,7 @@ type User struct {
833
834
835
type WorkspaceResource struct {
836
ID uuid.UUID `json:"id"`
837
+ CreatedAt time.Time `json:"created_at"`
838
JobID uuid.UUID `json:"job_id"`
839
Transition database.WorkspaceTransition `json:"transition"`
840
Type string `json:"type"`
0 commit comments