forked from forgejo/forgejo
Add error info if no user can fork the repo (#25820)
Before: (Owner list is empty)  After: (Disable the button and show the error info) 
This commit is contained in:
parent
61c9268c56
commit
52f46919dc
2 changed files with 7 additions and 0 deletions
|
@ -174,6 +174,12 @@ func getForkRepository(ctx *context.Context) *repo_model.Repository {
|
|||
ctx.Data["ContextUser"] = ctx.Doer
|
||||
} else if len(orgs) > 0 {
|
||||
ctx.Data["ContextUser"] = orgs[0]
|
||||
} else {
|
||||
msg := ctx.Tr("repo.fork_no_valid_owners")
|
||||
ctx.Data["Flash"] = ctx.Flash
|
||||
ctx.Flash.Error(msg)
|
||||
ctx.Data["CanForkRepo"] = false
|
||||
return nil
|
||||
}
|
||||
|
||||
return forkRepo
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue