Commit 6cabc9bf authored by Henrique Dias's avatar Henrique Dias Committed by Matt Holt

Add Event Hook plugins to DescribePlugins function (#1540)

* Add Event Hook plugins to DescribePlugins function

* Update plugins.go

* Update plugins.go
parent da674fd5
...@@ -53,6 +53,14 @@ func DescribePlugins() string { ...@@ -53,6 +53,14 @@ func DescribePlugins() string {
str += " " + defaultCaddyfileLoader.name + "\n" str += " " + defaultCaddyfileLoader.name + "\n"
} }
if len(eventHooks) > 0 {
// List the event hook plugins
str += "\nEvent hook plugins:\n"
for hookPlugin := range eventHooks {
str += " hook." + hookPlugin + "\n"
}
}
// Let's alphabetize the rest of these... // Let's alphabetize the rest of these...
var others []string var others []string
for stype, stypePlugins := range plugins { for stype, stypePlugins := range plugins {
...@@ -65,6 +73,7 @@ func DescribePlugins() string { ...@@ -65,6 +73,7 @@ func DescribePlugins() string {
others = append(others, s) others = append(others, s)
} }
} }
sort.Strings(others) sort.Strings(others)
str += "\nOther plugins:\n" str += "\nOther plugins:\n"
for _, name := range others { for _, name := range others {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment