Skip to content

Commit b6e2468

Browse files
committed
fix
1 parent c221767 commit b6e2468

File tree

2 files changed

+27
-55
lines changed

2 files changed

+27
-55
lines changed

models/user/user.go

+26-25
Original file line numberDiff line numberDiff line change
@@ -565,37 +565,38 @@ var (
565565
".",
566566
"..",
567567
".well-known",
568-
"api",
569-
"assets",
570-
"attachments",
571-
"avatar",
572-
"avatars",
568+
569+
"api", // gitea api
570+
"metrics", // prometheus metrics api
571+
"v2", // container registry api
572+
573+
"assets", // static asset files
574+
"attachments", // issue attachments
575+
576+
"avatar", // avatar by email hash
577+
"avatars", // user avatars by file name
578+
"repo-avatars",
579+
573580
"captcha",
574-
"commits",
575-
"debug",
576-
"error",
581+
"login", // oauth2 login
582+
"org", // org create/manage, or "/org/{org}", BUT if an org is named as "invite" then it goes wrong
583+
"user", // user login/activate/settings, etc
584+
"repo", // repo create/migrate, etc
585+
577586
"explore",
578-
"favicon.ico",
579-
"ghost",
580587
"issues",
581-
"login",
582-
"manifest.json",
583-
"metrics",
588+
"pulls",
584589
"milestones",
585-
"new",
586590
"notifications",
587-
"org",
588-
"pulls",
589-
"raw",
590-
"repo",
591-
"repo-avatars",
592-
"robots.txt",
593-
"search",
594-
"serviceworker.js",
595-
"ssh_info",
591+
592+
"favicon.ico",
593+
"manifest.json", // web app manifests
594+
"robots.txt", // search engine robots
595+
"sitemap.xml", // search engine sitemap
596+
"ssh_info", // agit info
596597
"swagger.v1.json",
597-
"user",
598-
"v2",
598+
599+
"ghost", // reversed name for deleted users
599600
"gitea-actions",
600601
}
601602

tests/integration/user_test.go

+1-30
Original file line numberDiff line numberDiff line change
@@ -98,36 +98,7 @@ func TestRenameReservedUsername(t *testing.T) {
9898
reservedUsernames := []string{
9999
// ".", "..", ".well-known", // The names are not only reserved but also invalid
100100
"api",
101-
"assets",
102-
"attachments",
103-
"avatar",
104-
"avatars",
105-
"captcha",
106-
"commits",
107-
"debug",
108-
"error",
109-
"explore",
110-
"favicon.ico",
111-
"ghost",
112-
"issues",
113-
"login",
114-
"manifest.json",
115-
"metrics",
116-
"milestones",
117-
"new",
118-
"notifications",
119-
"org",
120-
"pulls",
121-
"raw",
122-
"repo",
123-
"repo-avatars",
124-
"robots.txt",
125-
"search",
126-
"serviceworker.js",
127-
"ssh_info",
128-
"swagger.v1.json",
129-
"user",
130-
"v2",
101+
"name.keys",
131102
}
132103

133104
session := loginUser(t, "user2")

0 commit comments

Comments
 (0)