Browse Source

show user who created the repository instead of the organization in action feed (#5948)

tags/v1.9.0-dev
Lanre Adelowo 5 years ago
parent
commit
634cbaad2b
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      models/repo.go

+ 2
- 2
models/repo.go View File

@@ -1359,14 +1359,14 @@ func createRepository(e *xorm.Session, doer, u *User, repo *Repository) (err err
return fmt.Errorf("watchRepo: %v", err)
}
}
if err = newRepoAction(e, u, repo); err != nil {
if err = newRepoAction(e, doer, repo); err != nil {
return fmt.Errorf("newRepoAction: %v", err)
}

return nil
}

// CreateRepository creates a repository for the user/organization u.
// CreateRepository creates a repository for the user/organization.
func CreateRepository(doer, u *User, opts CreateRepoOptions) (_ *Repository, err error) {
if !doer.IsAdmin && !u.CanCreateRepo() {
return nil, ErrReachLimitOfRepo{u.MaxRepoCreation}

Loading…
Cancel
Save