1
0
mirror of https://github.com/minio/mc.git synced 2025-11-14 23:42:27 +03:00

Access validation only for ListBuckets(), all others do not explicitly require Auth verification

This commit is contained in:
Harshavardhana
2015-04-30 14:01:54 -07:00
parent 9833697e0a
commit c4d954b614
5 changed files with 24 additions and 15 deletions

View File

@@ -91,13 +91,6 @@ func (e errAliasExists) Error() string {
return "Alias name: " + e.name + " exists"
}
// errInvalidAuthKeys - invalid authorization keys
type errInvalidAuthKeys struct{}
func (e errInvalidAuthKeys) Error() string {
return "Invalid authorization keys"
}
type errIsNotBucket struct {
path string
}