File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/main/kotlin/com/coder/gateway/models Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package com.coder.gateway.models
33import com.coder.gateway.sdk.Arch
44import com.coder.gateway.sdk.OS
55import com.coder.gateway.sdk.v2.models.WorkspaceTransition
6- import java.util.UUID
6+ import java.util.*
77import javax.swing.Icon
88
99data class WorkspaceAgentModel (
@@ -32,6 +32,7 @@ data class WorkspaceAgentModel(
3232 if (name != other.name) return false
3333 if (templateID != other.templateID) return false
3434 if (templateName != other.templateName) return false
35+ if (agentStatus != other.agentStatus) return false
3536
3637 return true
3738 }
@@ -42,6 +43,7 @@ data class WorkspaceAgentModel(
4243 result = 31 * result + name.hashCode()
4344 result = 31 * result + templateID.hashCode()
4445 result = 31 * result + templateName.hashCode()
46+ result = 31 * result + agentStatus.hashCode()
4547 return result
4648 }
4749}
You can’t perform that action at this time.
0 commit comments