Add an api endpoint to fetch git notes (#15373) (#16649)

close #15373
This commit is contained in:
nitul1991 2021-08-11 06:31:40 +05:30 committed by GitHub
parent c4d70a0325
commit 2d25b7d44b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 228 additions and 1 deletions

View file

@ -0,0 +1,11 @@
// Copyright 2021 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package structs
// Note contains information related to a git note
type Note struct {
Message string `json:"message"`
Commit *Commit `json:"commit"`
}