mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	| @@ -57,8 +57,8 @@ func ListAccessTokens(uid int64) ([]*AccessToken, error) { | ||||
| 	return tokens, nil | ||||
| } | ||||
|  | ||||
| // UpdateAccessToekn updates information of access token. | ||||
| func UpdateAccessToekn(t *AccessToken) error { | ||||
| // UpdateAccessToken updates information of access token. | ||||
| func UpdateAccessToken(t *AccessToken) error { | ||||
| 	_, err := x.Id(t.ID).AllCols().Update(t) | ||||
| 	return err | ||||
| } | ||||
|   | ||||
| @@ -55,8 +55,8 @@ func SignedInID(ctx *macaron.Context, sess session.Store) int64 { | ||||
| 				return 0 | ||||
| 			} | ||||
| 			t.Updated = time.Now() | ||||
| 			if err = models.UpdateAccessToekn(t); err != nil { | ||||
| 				log.Error(4, "UpdateAccessToekn: %v", err) | ||||
| 			if err = models.UpdateAccessToken(t); err != nil { | ||||
| 				log.Error(4, "UpdateAccessToken: %v", err) | ||||
| 			} | ||||
| 			return t.UID | ||||
| 		} | ||||
|   | ||||
| @@ -126,8 +126,8 @@ func HTTP(ctx *middleware.Context) { | ||||
| 				return | ||||
| 			} | ||||
| 			token.Updated = time.Now() | ||||
| 			if err = models.UpdateAccessToekn(token); err != nil { | ||||
| 				ctx.Handle(500, "UpdateAccessToekn", err) | ||||
| 			if err = models.UpdateAccessToken(token); err != nil { | ||||
| 				ctx.Handle(500, "UpdateAccessToken", err) | ||||
| 			} | ||||
| 			authUser, err = models.GetUserByID(token.UID) | ||||
| 			if err != nil { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user