0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-02-15 23:23:30 +01:00
This commit is contained in:
Excellencedev 2026-01-06 16:13:23 +01:00
parent b4a17dffa5
commit 3fb03fbe51

View File

@ -5,6 +5,7 @@ package setting
import (
"net/http"
"slices"
actions_model "code.gitea.io/gitea/models/actions"
"code.gitea.io/gitea/models/perm"
@ -151,11 +152,10 @@ func ActionsAllowedReposAdd(ctx *context.Context) {
}
// Check if already exists
for _, id := range actionsCfg.AllowedCrossRepoIDs {
if id == repo.ID {
ctx.Redirect(ctx.Org.OrgLink + "/settings/actions")
return
}
// Check if already exists
if slices.Contains(actionsCfg.AllowedCrossRepoIDs, repo.ID) {
ctx.Redirect(ctx.Org.OrgLink + "/settings/actions")
return
}
actionsCfg.AllowedCrossRepoIDs = append(actionsCfg.AllowedCrossRepoIDs, repo.ID)