fix: add search to reserved usernames (#9063)

* fix: add search to reserved usernames

* Update integrations/user_test.go

Co-Authored-By: 6543 <24977596+6543@users.noreply.github.com>
This commit is contained in:
Antoine GIRARD 2019-11-18 21:03:25 +01:00 committed by techknowlogick
parent d338e8238f
commit f128e06ea6
2 changed files with 2 additions and 0 deletions

View File

@ -90,6 +90,7 @@ func TestRenameReservedUsername(t *testing.T) {
"repo",
"template",
"user",
"search",
}
session := loginUser(t, "user2")

View File

@ -822,6 +822,7 @@ var (
".",
"..",
".well-known",
"search",
}
reservedUserPatterns = []string{"*.keys", "*.gpg"}
)