mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
Refactor names (#31405)
This PR only does "renaming": * `Route` should be `Router` (and chi router is also called "router") * `Params` should be `PathParam` (to distingush it from URL query param, and to match `FormString`) * Use lower case for private functions to avoid exposing or abusing
This commit is contained in:
@@ -23,8 +23,8 @@ func cacheableRedirect(ctx *context.Context, location string) {
|
||||
|
||||
// AvatarByUserName redirect browser to user avatar of requested size
|
||||
func AvatarByUserName(ctx *context.Context) {
|
||||
userName := ctx.Params(":username")
|
||||
size := int(ctx.ParamsInt64(":size"))
|
||||
userName := ctx.PathParam(":username")
|
||||
size := int(ctx.PathParamInt64(":size"))
|
||||
|
||||
var user *user_model.User
|
||||
if strings.ToLower(userName) != user_model.GhostUserLowerName {
|
||||
@@ -46,7 +46,7 @@ func AvatarByUserName(ctx *context.Context) {
|
||||
|
||||
// AvatarByEmailHash redirects the browser to the email avatar link
|
||||
func AvatarByEmailHash(ctx *context.Context) {
|
||||
hash := ctx.Params(":hash")
|
||||
hash := ctx.PathParam(":hash")
|
||||
email, err := avatars.GetEmailForHash(ctx, hash)
|
||||
if err != nil {
|
||||
ctx.ServerError("invalid avatar hash: "+hash, err)
|
||||
|
Reference in New Issue
Block a user