summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/authelia-gen/cmd_docs_cli.go10
-rw-r--r--cmd/authelia-gen/const.go4
-rw-r--r--cmd/authelia-gen/templates/docs-contributing-development-commitmsg.md.tmpl5
-rw-r--r--cmd/authelia-scripts/cmd/gen.go2
4 files changed, 18 insertions, 3 deletions
diff --git a/cmd/authelia-gen/cmd_docs_cli.go b/cmd/authelia-gen/cmd_docs_cli.go
index 1d0ec1123..b9c3c799c 100644
--- a/cmd/authelia-gen/cmd_docs_cli.go
+++ b/cmd/authelia-gen/cmd_docs_cli.go
@@ -155,6 +155,11 @@ menu:
identifier: "%s"
weight: %d
toc: true
+seo:
+ title: "" # custom title (optional)
+ description: "" # custom description (recommended)
+ canonical: "" # custom canonical URL (optional)
+ noindex: false # false (default) or true
---
`
@@ -170,6 +175,11 @@ menu:
parent: "%s"
weight: %d
toc: true
+seo:
+ title: "" # custom title (optional)
+ description: "" # custom description (recommended)
+ canonical: "" # custom canonical URL (optional)
+ noindex: false # false (default) or true
---
`
diff --git a/cmd/authelia-gen/const.go b/cmd/authelia-gen/const.go
index 202709c3a..96e45fdef 100644
--- a/cmd/authelia-gen/const.go
+++ b/cmd/authelia-gen/const.go
@@ -12,7 +12,7 @@ const (
fileWebI18NIndex = "src/i18n/index.ts"
fileWebPackage = "package.json"
- fileDocsCommitMessageGuidelines = "docs/content/en/contributing/guidelines/commit-message.md"
+ fileDocsCommitMessageGuidelines = "docs/content/contributing/guidelines/commit-message.md"
fileCodeConfigKeys = "internal/configuration/schema/keys.go"
fileServerGenerated = "internal/server/gen.go"
@@ -23,7 +23,7 @@ const (
dirDocsStatic = "static"
dirDocsStaticJSONSchemas = "schemas"
dirDocsData = "data"
- dirDocsCLIReference = "en/reference/cli"
+ dirDocsCLIReference = "reference/cli"
fileDocsDataLanguages = "languages.json"
fileDocsDataMisc = "misc.json"
diff --git a/cmd/authelia-gen/templates/docs-contributing-development-commitmsg.md.tmpl b/cmd/authelia-gen/templates/docs-contributing-development-commitmsg.md.tmpl
index 19d9bc778..99e07c200 100644
--- a/cmd/authelia-gen/templates/docs-contributing-development-commitmsg.md.tmpl
+++ b/cmd/authelia-gen/templates/docs-contributing-development-commitmsg.md.tmpl
@@ -13,6 +13,11 @@ toc: true
aliases:
- /docs/contributing/commitmsg-guidelines.html
- /contributing/development/guidelines-commit-message/
+seo:
+ title: "" # custom title (optional)
+ description: "" # custom description (recommended)
+ canonical: "" # custom canonical URL (optional)
+ noindex: false # false (default) or true
---
The reasons for these conventions are as follows:
diff --git a/cmd/authelia-scripts/cmd/gen.go b/cmd/authelia-scripts/cmd/gen.go
index 7715d0fd0..5e283c9ce 100644
--- a/cmd/authelia-scripts/cmd/gen.go
+++ b/cmd/authelia-scripts/cmd/gen.go
@@ -7,5 +7,5 @@
package cmd
const (
- versionSwaggerUI = "5.11.10"
+ versionSwaggerUI = "5.12.0"
)