mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fix activity feed (#1779)
* Fix activity feed Preserve actions after user/repo name change * Add missing comment * Fix migration, and remove fields completely * Tests
This commit is contained in:
		@@ -162,11 +162,5 @@ func (team *Team) checkForConsistency(t *testing.T) {
 | 
			
		||||
 | 
			
		||||
func (action *Action) checkForConsistency(t *testing.T) {
 | 
			
		||||
	repo := AssertExistsAndLoadBean(t, &Repository{ID: action.RepoID}).(*Repository)
 | 
			
		||||
	owner := AssertExistsAndLoadBean(t, &User{ID: repo.OwnerID}).(*User)
 | 
			
		||||
	actor := AssertExistsAndLoadBean(t, &User{ID: action.ActUserID}).(*User)
 | 
			
		||||
 | 
			
		||||
	assert.Equal(t, repo.Name, action.RepoName, "action: %+v", action)
 | 
			
		||||
	assert.Equal(t, repo.IsPrivate, action.IsPrivate, "action: %+v", action)
 | 
			
		||||
	assert.Equal(t, owner.Name, action.RepoUserName, "action: %+v", action)
 | 
			
		||||
	assert.Equal(t, actor.Name, action.ActUserName, "action: %+v", action)
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user