mirror of
https://git.zx2c4.com/cgit
synced 2025-08-03 09:34:43 +02:00
Teach cgit_object_link() about tag objects
This makes random tag links more helpfull, e.g. when a branch head references a tag object, link to the tag page. Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
parent
cbcdbcf2bf
commit
fc5880fab8
1 changed files with 3 additions and 0 deletions
|
@ -272,6 +272,9 @@ void cgit_object_link(struct object *obj)
|
|||
} else if (obj->type == OBJ_TREE) {
|
||||
page = "tree";
|
||||
arg = "id";
|
||||
} else if (obj->type == OBJ_TAG) {
|
||||
page = "tag";
|
||||
arg = "id";
|
||||
} else {
|
||||
page = "blob";
|
||||
arg = "id";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue