web frontend for git (tangled's grandpa)
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

routes: ignore files

+1 -1
+1 -1
routes/routes.go
··· 40 40 infos := []info{} 41 41 42 42 for _, dir := range dirs { 43 - if d.isIgnored(dir.Name()) { 43 + if !dir.IsDir() || d.isIgnored(dir.Name()) { 44 44 continue 45 45 } 46 46