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.
1 parent 8e2fd05 commit bf9b81fCopy full SHA for bf9b81f
src/main/kotlin/com/coder/gateway/models/WorkspaceAgentModel.kt
@@ -3,7 +3,7 @@ package com.coder.gateway.models
3
import com.coder.gateway.sdk.Arch
4
import com.coder.gateway.sdk.OS
5
import com.coder.gateway.sdk.v2.models.WorkspaceTransition
6
-import java.util.UUID
+import java.util.*
7
import javax.swing.Icon
8
9
data class WorkspaceAgentModel(
@@ -32,6 +32,7 @@ data class WorkspaceAgentModel(
32
if (name != other.name) return false
33
if (templateID != other.templateID) return false
34
if (templateName != other.templateName) return false
35
+ if (agentStatus != other.agentStatus) return false
36
37
return true
38
}
0 commit comments