Skip to content

Commit

Permalink
fix: UpdateProjectParams make FingerprintingRules and GroupingEnhance…
Browse files Browse the repository at this point in the history
…ments nil-able
  • Loading branch information
jianyuan committed Oct 31, 2024
1 parent 036af7f commit 4fab489
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sentry/projects.go
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ type UpdateProjectParams struct {
ResolveAge *int `json:"resolveAge,omitempty"`
Options map[string]interface{} `json:"options,omitempty"`
AllowedDomains []string `json:"allowedDomains,omitempty"`
FingerprintingRules string `json:"fingerprintingRules,omitempty"`
GroupingEnhancements string `json:"groupingEnhancements,omitempty"`
FingerprintingRules *string `json:"fingerprintingRules,omitempty"`
GroupingEnhancements *string `json:"groupingEnhancements,omitempty"`
}

// Update various attributes and configurable settings for a given project.
Expand Down

0 comments on commit 4fab489

Please sign in to comment.