From c2de6335092a4f5ad7a6a962eb7f91c0245e5e25 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 14 Feb 2021 00:11:29 +1100 Subject: Language and License fields added to repo table --- cgit.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'cgit.h') diff --git a/cgit.h b/cgit.h index 69b5c13..6e76300 100644 --- a/cgit.h +++ b/cgit.h @@ -83,6 +83,8 @@ struct cgit_repo { char *path; char *desc; char *extra_head_content; + char *language; + char *license; char *owner; char *homepage; char *defbranch; @@ -231,6 +233,8 @@ struct cgit_config { int enable_http_clone; int enable_index_links; int enable_index_owner; + int enable_index_license; + int enable_index_language; int enable_blame; int enable_commit_graph; int enable_log_filecount; -- cgit