0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 02:18:53 +02:00

modules/web_hook: Embolden the ref name on create/delete events.

This commit is contained in:
Jason Volk 2019-10-08 13:31:14 -07:00
parent fb15e8c30b
commit aa24c43137

View file

@ -1142,11 +1142,14 @@ github_handle__create(std::ostream &out,
content["ref_type"]
};
out << ' '
<< ref_type
<< ' '
<< ref
;
out
<< ' '
<< ref_type
<< ' '
<< "<b>"
<< ref
<< "</b>"
;
return true;
}
@ -1165,11 +1168,14 @@ github_handle__delete(std::ostream &out,
content["ref_type"]
};
out << ' '
<< ref_type
<< ' '
<< ref
;
out
<< ' '
<< ref_type
<< ' '
<< "<b>"
<< ref
<< "</b>"
;
return true;
}