Browse Source

Mirror fix on transfer repo

tags/v0.9.99
Unknwon 9 years ago
parent
commit
10673417dc
3 changed files with 9 additions and 2 deletions
  1. 1
    1
      conf/locale/locale_en-US.ini
  2. 1
    1
      conf/locale/locale_zh-CN.ini
  3. 7
    0
      models/action.go

+ 1
- 1
conf/locale/locale_en-US.ini View File

@@ -574,7 +574,7 @@ create_repo = created repository <a href="%s/%s">%s</a>
commit_repo = pushed to <a href="%s/%s/src/%s">%s</a> at <a href="%s/%s">%s</a>
create_issue = opened issue <a href="%s/%s/issues/%s">%s#%s</a>
comment_issue = commented on issue <a href="%s/%s/issues/%s">%s#%s</a>
transfer_repo = transfered repository <code>%s</code> to <a href="%s%s">%s</a>
transfer_repo = transfered repository <code>%s</code> to <a href="/%s%s">%s</a>

[tool]
ago = ago

+ 1
- 1
conf/locale/locale_zh-CN.ini View File

@@ -572,7 +572,7 @@ create_repo = 创建了仓库 <a href="%s/%s">%s</a>
commit_repo = 推送了 <a href="%s/%s/src/%s">%s</a> 分支的代码到 <a href="%s/%s">%s</a>
create_issue = 创建了工单 <a href="%s/%s/issues/%s">%s#%s</a>
comment_issue = 评论了工单 <a href="%s/%s/issues/%s">%s#%s</a>
transfer_repo = 将仓库 <code>%s</code> 转移至 <a href="%s%s">%s</a>
transfer_repo = 将仓库 <code>%s</code> 转移至 <a href="/%s%s">%s</a>

[tool]
ago = 之前

+ 7
- 0
models/action.go View File

@@ -366,6 +366,13 @@ func TransferRepoAction(u, newUser *User, repo *Repository) (err error) {
return err
}

// Remove watch for organization.
if repo.Owner.IsOrganization() {
if err = WatchRepo(repo.Owner.Id, repo.Id, false); err != nil {
log.Error(4, "WatchRepo", err)
}
}

log.Trace("action.TransferRepoAction: %s/%s", u.Name, repo.Name)
return err
}

Loading…
Cancel
Save