export CommandFunc

pull/144/head
Henrique Dias 2016-12-18 12:36:36 +00:00
parent aae318028b
commit 36f039a0df
2 changed files with 5 additions and 4 deletions

View File

@ -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()

View File

@ -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 ...