From 4d46bf4f5e5366a4e9db642f1281e6282ef7f91d Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 18 Feb 2017 14:09:11 -0200 Subject: [PATCH] Add "mirror" field to repo --- gitea/repo.go | 1 + 1 file changed, 1 insertion(+) diff --git a/gitea/repo.go b/gitea/repo.go index 75d6395..9399ca2 100644 --- a/gitea/repo.go +++ b/gitea/repo.go @@ -27,6 +27,7 @@ type Repository struct { Description string `json:"description"` Private bool `json:"private"` Fork bool `json:"fork"` + Mirror bool `json:"mirror"` HTMLURL string `json:"html_url"` SSHURL string `json:"ssh_url"` CloneURL string `json:"clone_url"`