fix notificaation readme, more precise naming

Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
This commit is contained in:
Jörn Friedrich Dreyer
2023-03-24 11:39:41 +01:00
parent 8df0d08fac
commit 5d0e8f0b7a
3 changed files with 4 additions and 4 deletions

View File

@@ -4,5 +4,5 @@ func main() {
RenderTemplates()
GetRogueEnvs()
RenderGlobalVarsTemplate()
GenerateMarkdowns()
GenerateServiceIndexMarkdowns()
}

View File

@@ -18,8 +18,8 @@ var _configMarkdown = `{{< include file="services/_includes/%s-config-example.ya
{{< include file="services/_includes/%s_configvars.md" >}}
`
// GenerateMarkdowns generates the _index.md files for the dev docu
func GenerateMarkdowns() {
// GenerateServiceIndexMarkdowns generates the _index.md files for the dev docu
func GenerateServiceIndexMarkdowns() {
paths, err := filepath.Glob("../../services/*/README.md")
if err != nil {
log.Fatal(err)

View File

@@ -1,4 +1,4 @@
#### Notification service
# Notification service
The notification service is responsible for sending emails to users informing them about events that happened. To do this it hooks into the event system and listens for certain events that the users need to be informed about.