-
Notifications
You must be signed in to change notification settings - Fork 156
WIP GH-56 Refactor to use pointers for all fields. #83
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
0675f9d
GH-56: Refactor to use pointers for all fields. Adds a few helpers to…
ojongerius 10ab901
GH-56: Set default values for test structs.
ojongerius 2a67c65
GH-56: Fix widget test. Rename tests to make testing groups more easy.
ojongerius 1a5085b
GH-56: Fixup of user test.
ojongerius f18c0a7
GH-56: Add a few getters and tests.
ojongerius 9e9f19d
GH-56: Update comments.
ojongerius 8a1211a
Simplify Widget tests.
ojongerius b80c777
Small changes implementing PR feedback.
ojongerius 7126deb
Be explicit in what is returned instead of using the default value.
ojongerius 44f55f5
Make use of omitempty consistent accross all types.
ojongerius 0984f79
Add support for new_host_delay in monitor definitions
2f75850
Be explicit in type conversion helper definitions
e1345fa
Getters and setters already declared in helpers.go (this change was c…
ojongerius 809cc0c
Properly encode/decode Aggregator param.
m25n 7313d4a
Generate accessors.
ojongerius 0f5ff63
Add generated code.
ojongerius 826e56f
Gofmt.
ojongerius 52b66b3
fmt.
ojongerius cccf633
Move generate comments to generate.go, renamed generation source file…
ojongerius 59ba811
Add full stop and end of Godoc string.
ojongerius dcb6df3
Regenerate code.
ojongerius edd7699
Update README to reflect API changes and inform users on how to switc…
ojongerius cfa8d69
Update README with correction on how to use gopkg.in, and instruction…
ojongerius 53aa1ca
Update example to use Int helper.
ojongerius 495a0f0
Improve Readme.
ojongerius ecbc43f
Wording on code generation.
ojongerius File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This is unrelated to your changes here but I'm noticing that it looks like inconsistent usage of
omitempty
. TheAlert
struct uses it on every member butComment
only uses it on optional members.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.
True, I'll add omitempty to all fields 🤞