This website works better with JavaScript.
Home
Explore
Help
Sign In
closed-social
/
gitea
Watch
3
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Make /users/{username}/repos list private repos the current user has access to (
#8621
)
for-closed-social
7FM
5 years ago
committed by
zeripath
parent
ace0346c66
commit
22272fe1e4
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
routers/api/v1/user/repo.go
+ 1
- 1
routers/api/v1/user/repo.go
View File
@ -52,7 +52,7 @@ func ListUserRepos(ctx *context.APIContext) {
if
ctx
.
Written
(
)
{
return
}
private
:=
ctx
.
IsSigned
&&
(
ctx
.
User
.
ID
==
user
.
ID
||
ctx
.
User
.
IsAdmin
)
private
:=
ctx
.
IsSigned
listUserRepos
(
ctx
,
user
,
private
)
}
Write
Preview
Loading…
Cancel
Save