remove todos from code
This commit is contained in:
parent
af02b66776
commit
9b92b17e1d
|
@ -97,11 +97,9 @@ func (f FileManager) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, err
|
||||||
}
|
}
|
||||||
// VCS commands
|
// VCS commands
|
||||||
if r.Header.Get("Command") != "" {
|
if r.Header.Get("Command") != "" {
|
||||||
// TODO: not implemented on frontend
|
|
||||||
return vcsCommand(w, r, c)
|
return vcsCommand(w, r, c)
|
||||||
}
|
}
|
||||||
// Creates a new folder
|
// Creates a new folder
|
||||||
// TODO: not implemented on frontend
|
|
||||||
return newDirectory(w, r, c)
|
return newDirectory(w, r, c)
|
||||||
case http.MethodDelete:
|
case http.MethodDelete:
|
||||||
// Delete a file or a directory
|
// Delete a file or a directory
|
||||||
|
|
Loading…
Reference in New Issue