Reserve ".png" suffix for user/org names (#23992)
Org/User names ending with ".png" where not functional, so reserve them alternative / close #23908
This commit is contained in:
parent
eb397c3e63
commit
2b91841cd3
2 changed files with 13 additions and 1 deletions
|
@ -537,7 +537,8 @@ var (
|
|||
"gitea-actions",
|
||||
}
|
||||
|
||||
reservedUserPatterns = []string{"*.keys", "*.gpg", "*.rss", "*.atom"}
|
||||
// DON'T ADD ANY NEW STUFF, WE SOLVE THIS WITH `/user/{obj}` PATHS!
|
||||
reservedUserPatterns = []string{"*.keys", "*.gpg", "*.rss", "*.atom", "*.png"}
|
||||
)
|
||||
|
||||
// IsUsableUsername returns an error when a username is reserved
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue