diff options
| author | Jason A. Donenfeld <Jason@zx2c4.com> | 2026-02-24 11:48:54 +0100 |
|---|---|---|
| committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2026-02-24 11:49:35 +0100 |
| commit | 0d28d54f0a287ee3e5a12d14ffd2ee23b5e22d76 (patch) | |
| tree | ec8517157a5f04a1c2cd5a49d9eeb4c3af90f63b /shared.c | |
| parent | 61ef851ef52c3094d12fefad3576262606fddd27 (diff) | |
| download | cgit-0d28d54f0a287ee3e5a12d14ffd2ee23b5e22d76.tar.xz | |
ui-log: allow link following to be disabled per-repo
This exists for other CPU heavy operations like blame, but doesn't for
the follow functionality. Add it for that.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'shared.c')
| -rw-r--r-- | shared.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -62,6 +62,7 @@ struct cgit_repo *cgit_add_repo(const char *url) ret->snapshots = ctx.cfg.snapshots; ret->enable_blame = ctx.cfg.enable_blame; ret->enable_commit_graph = ctx.cfg.enable_commit_graph; + ret->enable_follow_links = ctx.cfg.enable_follow_links; ret->enable_log_filecount = ctx.cfg.enable_log_filecount; ret->enable_log_linecount = ctx.cfg.enable_log_linecount; ret->enable_remote_branches = ctx.cfg.enable_remote_branches; |
