Skip to content

Commit

Permalink
Fix parsing issue :
Browse files Browse the repository at this point in the history
  • Loading branch information
afaucogney committed Nov 23, 2021
1 parent 9260141 commit 18069d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ data class GitLabMergeRequest(
@SerialName("allow_maintainer_to_push")
val allowMaintainerToPush: Boolean = false,
@SerialName("approvals_before_merge")
val approvalsBeforeMerge: Int = 0,
val approvalsBeforeMerge: Int? = null,
val assignee: GitLabUser? = null,
val author: GitLabUser,
@SerialName("changes_count")
Expand Down

0 comments on commit 18069d8

Please sign in to comment.