summaryrefslogtreecommitdiffstats
path: root/models/repo.go
diff options
context:
space:
mode:
authorJohn Olheiser <42128690+jolheiser@users.noreply.github.com>2019-09-08 03:28:40 -0500
committerLauris BH <lauris.buksis@zzdats.lv>2019-09-08 11:28:40 +0300
commit0118b6aaf8ada3edd67cb975c776f6f124178ad2 (patch)
tree8e96203d74de6c4bc7f8eb2a5751a8d218f3ffd3 /models/repo.go
parentd4e11ebb18df4bd01f509f673d536e093edb124a (diff)
downloadgitea-0118b6aaf8ada3edd67cb975c776f6f124178ad2.tar.gz
gitea-0118b6aaf8ada3edd67cb975c776f6f124178ad2.zip
Add option to initialize repository with labels (#6061)
* Add optional label sets on repo creation * Fix CRLF * Instead of hardcoding default, make it the helper * Move label set init out of repo init Add a new error for the router Combine router label init with repo creation label init Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add issue labels to Swagger for repo creation Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update models/issue_label.go Co-Authored-By: Lauris BH <lauris@nix.lv> * Update models/issue_label.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com>
Diffstat (limited to 'models/repo.go')
-rw-r--r--models/repo.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/models/repo.go b/models/repo.go
index 507521357e..3e593ce4ed 100644
--- a/models/repo.go
+++ b/models/repo.go
@@ -1098,6 +1098,7 @@ type CreateRepoOptions struct {
Description string
OriginalURL string
Gitignores string
+ IssueLabels string
License string
Readme string
IsPrivate bool
@@ -1394,6 +1395,13 @@ func CreateRepository(doer, u *User, opts CreateRepoOptions) (_ *Repository, err
return nil, fmt.Errorf("initRepository: %v", err)
}
+ // Initialize Issue Labels if selected
+ if len(opts.IssueLabels) > 0 {
+ if err = initalizeLabels(sess, repo.ID, opts.IssueLabels); err != nil {
+ return nil, fmt.Errorf("initalizeLabels: %v", err)
+ }
+ }
+
_, stderr, err := process.GetManager().ExecDir(-1,
repoPath, fmt.Sprintf("CreateRepository(git update-server-info): %s", repoPath),
git.GitExecutable, "update-server-info")