forked from forgejo/forgejo
Add mentionable teams to tributeValues and change team mention rules to gh's style (#13198)
* Add mentionable teams to tributeValues Signed-off-by: a1012112796 <1012112796@qq.com> * Apply suggestions from code review Co-authored-by: silverwind <me@silverwind.io> * Change team mention rules to gh's style * use org's avator as team avator in ui Signed-off-by: a1012112796 <1012112796@qq.com> * Update modules/markup/html.go * Update models/issue.go Co-authored-by: Lauris BH <lauris@nix.lv> * Update models/issue.go * fix a small nit and update test code Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: 6543 <6543@obermui.de>
This commit is contained in:
parent
1b1adab26c
commit
34df4e5df5
8 changed files with 114 additions and 36 deletions
|
@ -325,6 +325,7 @@ func TestRegExp_mentionPattern(t *testing.T) {
|
|||
{"@gitea.", "@gitea"},
|
||||
{"@gitea,", "@gitea"},
|
||||
{"@gitea;", "@gitea"},
|
||||
{"@gitea/team1;", "@gitea/team1"},
|
||||
}
|
||||
falseTestCases := []string{
|
||||
"@ 0",
|
||||
|
@ -340,6 +341,7 @@ func TestRegExp_mentionPattern(t *testing.T) {
|
|||
"@gitea?this",
|
||||
"@gitea,this",
|
||||
"@gitea;this",
|
||||
"@gitea/team1/more",
|
||||
}
|
||||
|
||||
for _, testCase := range trueTestCases {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue