get repo now works somehow

This commit is contained in:
Michael Jerger 2023-10-27 14:10:13 +02:00
commit fe2a3d86d4
3 changed files with 5 additions and 7 deletions

View file

@ -20,10 +20,10 @@ func RepositoryIDAssignmentAPI() func(ctx *context.APIContext) {
log.Info("RepositoryIDAssignmentAPI: %v", repositoryID)
//TODO: check auth here ?
if !ctx.Repo.HasAccess() && !ctx.IsUserSiteAdmin() {
ctx.Error(http.StatusForbidden, "reqAnyRepoReader", "user should have any permission to read repository or permissions of site admin")
return
}
//if !ctx.Repo.HasAccess() && !ctx.IsUserSiteAdmin() {
// ctx.Error(http.StatusForbidden, "reqAnyRepoReader", "user should have any permission to read repository or permissions of site admin")
// return
//}
var err error
repository := new(context.Repository)