diff options
Diffstat (limited to 'vendor/github.com/xanzy/go-gitlab/repository_files.go')
-rw-r--r-- | vendor/github.com/xanzy/go-gitlab/repository_files.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/github.com/xanzy/go-gitlab/repository_files.go b/vendor/github.com/xanzy/go-gitlab/repository_files.go index fa97bf5f..26149319 100644 --- a/vendor/github.com/xanzy/go-gitlab/repository_files.go +++ b/vendor/github.com/xanzy/go-gitlab/repository_files.go @@ -43,6 +43,7 @@ type File struct { Ref string `json:"ref"` BlobID string `json:"blob_id"` CommitID string `json:"commit_id"` + SHA256 string `json:"content_sha256"` } func (r File) String() string { @@ -128,6 +129,7 @@ func (s *RepositoryFilesService) GetFileMetaData(pid interface{}, fileName strin FileName: resp.Header.Get("X-Gitlab-File-Name"), FilePath: resp.Header.Get("X-Gitlab-File-Path"), Ref: resp.Header.Get("X-Gitlab-Ref"), + SHA256: resp.Header.Get("X-Gitlab-Content-Sha256"), } if sizeString := resp.Header.Get("X-Gitlab-Size"); sizeString != "" { |