Browse Source

Moved "Pending" to first position

Signed-off-by: Jonas Franz <info@jonasfranz.software>
pull/3748/head
Jonas Franz 7 years ago
parent
commit
4ad563d66f
No known key found for this signature in database
GPG Key ID: 506AEEBE80BEDECD
  1. 6
      models/review.go

6
models/review.go

@ -16,14 +16,14 @@ type ReviewType int
const ReviewTypeUnknown ReviewType = -1
const (
// ReviewTypePending is a review which is not published yet
ReviewTypePending ReviewType = iota
// ReviewTypeApprove approves changes
ReviewTypeApprove ReviewType = iota
ReviewTypeApprove
// ReviewTypeComment gives general feedback
ReviewTypeComment
// ReviewTypeReject gives feedback blocking merge
ReviewTypeReject
// ReviewTypePending is a review which is not published yet
ReviewTypePending
)
// Review represents collection of code comments giving feedback for a PR

Loading…
Cancel
Save