summaryrefslogtreecommitdiff
path: root/service/static/config.go
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-15 15:54:14 +0300
committerWolfy-J <[email protected]>2018-06-15 15:54:14 +0300
commitdfef39c64132192d13e2315364a74f1b0244791e (patch)
treeb0959bbbb1ca5a16d94646454d7f2e9340081915 /service/static/config.go
parentccd297dbe2586b3fd29854f72f795be9e818522e (diff)
readme, samples, golint, build scripts
Diffstat (limited to 'service/static/config.go')
-rw-r--r--service/static/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/static/config.go b/service/static/config.go
index d55fcd66..1020b8cd 100644
--- a/service/static/config.go
+++ b/service/static/config.go
@@ -20,7 +20,7 @@ type Config struct {
Forbid []string
}
-// Forbid must return true if file extension is not allowed for the upload.
+// Forbids must return true if file extension is not allowed for the upload.
func (cfg *Config) Forbids(filename string) bool {
ext := strings.ToLower(path.Ext(filename))