Former-commit-id: 997f42a531c1a8fd4dac340129cea645f7c30fb8
This commit is contained in:
Henrique Dias
2016-12-30 16:22:26 +00:00
parent 7d9fb5995a
commit 103457f4e3
8 changed files with 260 additions and 81 deletions

View File

@@ -67,11 +67,15 @@ func GetListing(u *config.User, filePath string, baseURL string) (*Listing, erro
// Absolute URL
url := url.URL{Path: baseURL + name}
fileinfos = append(fileinfos, Info{
i := Info{
FileInfo: f,
URL: url.String(),
UserAllowed: u.Allowed(filePath),
})
UserAllowed: u.Allowed("/" + name),
}
i.RetrieveFileType()
fileinfos = append(fileinfos, i)
}
return &Listing{