-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Add missing CreatedAt
field in users_keys class
#1256
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1256 +/- ##
=======================================
Coverage 73.42% 73.42%
=======================================
Files 86 86
Lines 6040 6040
=======================================
Hits 4435 4435
Misses 836 836
Partials 769 769
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @simonkey007!
Just one comment to address, please, then I believe that we can merge.
github/users_keys.go
Outdated
URL *string `json:"url,omitempty"` | ||
Title *string `json:"title,omitempty"` | ||
ReadOnly *bool `json:"read_only,omitempty"` | ||
CreatedAt *time.Time `json:"created_at,omitempty"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe we have decided to make new time values be of type Timestamp
.
Could you please change this from *time.Time
to *Timestamp
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@gmlewis I've changed type of CreatedAt to *Timestamp
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @simonkey007!
LGTM.
Merging.
No description provided.