docserver/docs/menu_items_settings.md

43 lines
696 B
Markdown
Raw Permalink Normal View History

2024-08-14 17:21:59 +00:00
# Menu Items config settings
## menu_items.toml
```toml
[[web_menu_items]]
# ~home text part will be removed, it is to indicate it is a home link
text = "~home"
url = "/"
roles = []
[[web_menu_items]]
typ = "icon"
srctyp = "mdbook"
text = "DocServer"
url = "/docserver"
roles = ["dev"]
[[web_menu_items.items]]
typ = "icon"
srctyp = "mdbook"
text = "Documentation"
url = "/docserver"
roles = ["dev"]
[[web_menu_items.items]]
typ = "icon"
srctyp = "source"
text = "Source Docs"
url = "/srcdocserver"
roles = ["dev"]
[[web_menu_items.items]]
typ = "icon"
srctyp = "git"
text = "Git Repo"
url = "docserver"
roles = ["dev"]
[[web_menu_items]]
text = "Users"
url = "/users"
roles = ["admin"]
```