Skip to content

Commit

Permalink
add more fields to RebaseInput
Browse files Browse the repository at this point in the history
  • Loading branch information
lukegb authored Oct 20, 2023
1 parent bed9700 commit f01a53b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion changes.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,12 @@ type ProblemInfo struct {

// RebaseInput entity contains information for changing parent when rebasing.
type RebaseInput struct {
Base string `json:"base,omitempty"`
Base string `json:"base,omitempty"`
Strategy string `json:"strategy,omitempty"`
AllowConflicts bool `json:"allow_conflicts,omitempty"`
OnBehalfOfUploader bool `json:"on_behalf_of_uploader,omitempty"`
CommitterEmail string `json:"committer_email,omitempty"`
ValidationOptions map[string]string `json:"validation_options,omitempty"`
}

// RestoreInput entity contains information for restoring a change.
Expand Down

0 comments on commit f01a53b

Please sign in to comment.