summaryrefslogtreecommitdiffstats
path: root/vendor/code.gitea.io
diff options
context:
space:
mode:
authorJonas Östanbäck <cez81@users.noreply.github.com>2017-04-27 11:29:46 +0200
committerLunny Xiao <xiaolunwen@gmail.com>2017-04-27 17:29:46 +0800
commite4a0a04829fc337ca9d0adcacda159fd6021e5de (patch)
tree5e8167757550ee083d8b0a2d904455561bc67196 /vendor/code.gitea.io
parent8371f94d06cefbd65392af3b5c0f1fd1057429f7 (diff)
downloadgitea-e4a0a04829fc337ca9d0adcacda159fd6021e5de.tar.gz
gitea-e4a0a04829fc337ca9d0adcacda159fd6021e5de.zip
Add create_at and updated_at in PR json (#1616)
* Move new fields to object creation (use reference) * Vendor: Update SDK
Diffstat (limited to 'vendor/code.gitea.io')
-rw-r--r--vendor/code.gitea.io/sdk/gitea/pull.go3
-rw-r--r--vendor/code.gitea.io/sdk/gitea/release.go2
2 files changed, 4 insertions, 1 deletions
diff --git a/vendor/code.gitea.io/sdk/gitea/pull.go b/vendor/code.gitea.io/sdk/gitea/pull.go
index fcccf07e2b..a50db96e3e 100644
--- a/vendor/code.gitea.io/sdk/gitea/pull.go
+++ b/vendor/code.gitea.io/sdk/gitea/pull.go
@@ -38,6 +38,9 @@ type PullRequest struct {
Base *PRBranchInfo `json:"base"`
Head *PRBranchInfo `json:"head"`
MergeBase string `json:"merge_base"`
+
+ Created *time.Time `json:"created_at"`
+ Updated *time.Time `json:"updated_at"`
}
// PRBranchInfo base branch info when send a PR
diff --git a/vendor/code.gitea.io/sdk/gitea/release.go b/vendor/code.gitea.io/sdk/gitea/release.go
index de5ccba342..cc841466d8 100644
--- a/vendor/code.gitea.io/sdk/gitea/release.go
+++ b/vendor/code.gitea.io/sdk/gitea/release.go
@@ -14,7 +14,7 @@ import (
// Release represents a repository release
type Release struct {
ID int64 `json:"id"`
- TagName string `json:"name"`
+ TagName string `json:"tag_name"`
Target string `json:"target_commitish"`
Title string `json:"name"`
Note string `json:"body"`