From 22cd112eaf925fbd92bfeb40b8fb4a709d31c9f8 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 9 Nov 2021 10:11:12 +0100 Subject: [PATCH] Fix api endpoint description --- api/endpoints_modules.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/endpoints_modules.go b/api/endpoints_modules.go index da124b9..480fdef 100644 --- a/api/endpoints_modules.go +++ b/api/endpoints_modules.go @@ -10,8 +10,8 @@ func registerModulesEndpoints() error { Path: "modules/{moduleName:.+}/trigger/{eventName:.+}", Write: PermitSelf, ActionFunc: triggerEvent, - Name: "Export Configuration Options", - Description: "Returns a list of all registered configuration options and their metadata. This does not include the current active or default settings.", + Name: "Trigger Event", + Description: "Triggers an event of an internal module.", }); err != nil { return err }