Add traps to cell details page

This commit is contained in:
Eli Ribble 2026-01-15 21:00:42 +00:00
parent 0bd1a10753
commit 885b58a0ab
No known key found for this signature in database
6 changed files with 109 additions and 22 deletions

View file

@ -28,14 +28,6 @@ type ComponentMap struct {
type ContentAuthenticatedPlaceholder struct {
User User
}
type ContentCell struct {
BreedingSources []BreedingSourceSummary
CellBoundary h3.CellBoundary
Inspections []Inspection
MapData ComponentMap
Treatments []Treatment
User User
}
type ContentMockURLs struct {
Dispatch string
DispatchResults string
@ -95,7 +87,7 @@ type Link struct {
Title string
}
type Organization struct {
ID int
ID int
Name string
}
type ServiceRequestSummary struct {
@ -104,9 +96,9 @@ type ServiceRequestSummary struct {
Status string
}
type User struct {
DisplayName string
Initials string
Notifications []notification.Notification
Organization Organization
Username string
DisplayName string
Initials string
Notifications []notification.Notification
Organization Organization
Username string
}