show all repos until I have a better solution
This commit is contained in:
parent
e71905273d
commit
d54480b121
1 changed files with 6 additions and 6 deletions
|
@ -43,15 +43,15 @@ func ShowIndex(c *gin.Context) {
|
||||||
|
|
||||||
// for each repository in the remote system we get
|
// for each repository in the remote system we get
|
||||||
// the intersection of those repostiories in Drone
|
// the intersection of those repostiories in Drone
|
||||||
repos_, err := store.GetRepoListOf(c, repos)
|
// repos_, err := store.GetRepoListOf(c, repos)
|
||||||
if err != nil {
|
// if err != nil {
|
||||||
log.Errorf("Failure to get repository list for %s. %s.",
|
// log.Errorf("Failure to get repository list for %s. %s.",
|
||||||
user.Login, err)
|
// user.Login, err)
|
||||||
}
|
// }
|
||||||
|
|
||||||
c.HTML(200, "repos.html", gin.H{
|
c.HTML(200, "repos.html", gin.H{
|
||||||
"User": user,
|
"User": user,
|
||||||
"Repos": repos_,
|
"Repos": repos,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue