mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-09 03:32:56 +00:00
export CommandFunc
This commit is contained in:
parent
aae318028b
commit
36f039a0df
@ -11,10 +11,11 @@ import (
|
||||
"github.com/mholt/caddy"
|
||||
)
|
||||
|
||||
type commandRunner func(r *http.Request, c *Config, u *User) error
|
||||
// CommandFunc ...
|
||||
type CommandFunc func(r *http.Request, c *Config, u *User) error
|
||||
|
||||
// CommandRunner ...
|
||||
func CommandRunner(c *caddy.Controller) (commandRunner, error) {
|
||||
func CommandRunner(c *caddy.Controller) (CommandFunc, error) {
|
||||
fn := func(r *http.Request, c *Config, u *User) error { return nil }
|
||||
|
||||
args := c.RemainingArgs()
|
||||
|
@ -24,8 +24,8 @@ type Config struct {
|
||||
HugoEnabled bool // Enables the Hugo plugin for File Manager
|
||||
Users map[string]*User
|
||||
WebDavURL string
|
||||
BeforeSave commandRunner
|
||||
AfterSave commandRunner
|
||||
BeforeSave CommandFunc
|
||||
AfterSave CommandFunc
|
||||
}
|
||||
|
||||
// AbsoluteURL ...
|
||||
|
Loading…
x
Reference in New Issue
Block a user