Skip to content

Commit 5c73da7

Browse files
GiteaBotlunny
andauthored
Include collaboration repositories on dashboard source/forks/mirrors list (#31946) (#32122)
Backport #31946 by @lunny Fix #13489 In the original implementation, only `All` will display your owned and collaborated repositories. For other filters like `Source`, `Mirrors` and etc. will only display your owned repositories. This PR removed the limitations. Now except `collbrations`, other filters will always display your owned and collaborated repositories. Co-authored-by: Lunny Xiao <[email protected]>
1 parent a32aaf4 commit 5c73da7

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

web_src/js/components/DashboardRepoList.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ const sfc = {
7878
searchURL() {
7979
return `${this.subUrl}/repo/search?sort=updated&order=desc&uid=${this.uid}&team_id=${this.teamId}&q=${this.searchQuery
8080
}&page=${this.page}&limit=${this.searchLimit}&mode=${this.repoTypes[this.reposFilter].searchMode
81-
}${this.reposFilter !== 'all' ? '&exclusive=1' : ''
8281
}${this.archivedFilter === 'archived' ? '&archived=true' : ''}${this.archivedFilter === 'unarchived' ? '&archived=false' : ''
8382
}${this.privateFilter === 'private' ? '&is_private=true' : ''}${this.privateFilter === 'public' ? '&is_private=false' : ''
8483
}`;

0 commit comments

Comments
 (0)