aboutsummaryrefslogtreecommitdiff
path: root/models/repo.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2016-02-02 16:51:14 -0500
committerUnknwon <u@gogs.io>2016-02-02 16:51:14 -0500
commit5e97693e0e44037bdf60c6399f957102fed7c93c (patch)
tree5ae0320a24427cd766591abd69bddb5e4d0b9f8d /models/repo.go
parent452bc385febe2fbf45bbc258299e1dafe48a5b1e (diff)
parentb7b30cd85e5cabd9d643013ffb10dafd133b18ea (diff)
Merge pull request #2506 from sapk/add-branche-api-support
Implement API for branches listing
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index 8ce1f719..a0074a29 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -288,6 +288,20 @@ func (repo *Repository) GetMirror() (err error) {
return err
}
+func (repo *Repository) GetBranch(br string) (*Branch, error) {
+ if(!git.IsBranchExist(repo.RepoPath(), br)){
+ return nil, fmt.Errorf("Branch does not exist: %s", br);
+ }
+ return &Branch{
+ Path: repo.RepoPath(),
+ Name: br,
+ },nil
+}
+
+func (repo *Repository) GetBranches() ([]*Branch, error) {
+ return GetBranchesByPath(repo.RepoPath())
+}
+
func (repo *Repository) GetBaseRepo() (err error) {
if !repo.IsFork {
return nil