- Notifications
You must be signed in to change notification settings - Fork928
Closed
Description
What
Change this
type WorkspaceBuild struct { ... Deadline time.Time `json:"deadline"` ...
To this:
type WorkspaceBuild struct { ... Deadline *time.Time `json:"deadline"` ...
Why
The FE currently needs to check for the zero-value oftime.Time
for 'falsey' values.
Making this a pointer would allow passingnull
and avoid this need.