-rw-r--r-- | shared.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -21,2 +21,3 @@ char *cgit_script_name = CGIT_SCRIPT_NAME; char *cgit_cache_root = "/var/cache/cgit"; +char *cgit_repo_group = NULL; @@ -87,2 +88,3 @@ struct repoinfo *add_repo(const char *url) ret->owner = NULL; + ret->group = cgit_repo_group; ret->defbranch = "master"; @@ -133,2 +135,4 @@ void cgit_global_config_cb(const char *name, const char *value) cgit_max_commit_count = atoi(value); + else if (!strcmp(name, "repo.group")) + cgit_repo_group = xstrdup(value); else if (!strcmp(name, "repo.url")) |