Skip to content

chore: fix label for orgs docs #14920

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Refactor manifest JSON formatting for consistency
This change enhances the readability and maintainability of the `manifest.json` by ensuring consistent formatting across the JSON objects.
  • Loading branch information
bpmct committed Oct 1, 2024
commit 99b993df456b70c81700f358a0506a8dbdb0345a
66 changes: 52 additions & 14 deletions docs/manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"versions": ["main"],
"versions": [
"main"
],
"routes": [
{
"title": "About",
Expand Down Expand Up @@ -282,7 +284,10 @@
"title": "Process Logging",
"description": "Audit commands in workspaces with exectrace",
"path": "./templates/process-logging.md",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Icons",
Expand Down Expand Up @@ -393,21 +398,29 @@
"description": "Learn how to manage user groups",
"path": "./admin/groups.md",
"icon_path": "./images/icons/group.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Organizations",
"description": "Learn how to manage organizations",
"path": "./admin/organizations.md",
"icon_path": "./images/icons/orgs.svg",
"state": ["enterprise", "premium"]
"state": [
"premium"
]
},
{
"title": "Template RBAC",
"description": "Learn how to use the role based access control against templates",
"path": "./admin/rbac.md",
"icon_path": "./images/icons/rbac.svg",
"state": ["enterprise", "beta"]
"state": [
"enterprise",
"beta"
]
},
{
"title": "Configuration",
Expand Down Expand Up @@ -450,14 +463,20 @@
"description": "Run provisioners isolated from the Coder server",
"path": "./admin/provisioners.md",
"icon_path": "./images/icons/queue.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Workspace Proxies",
"description": "Run geo distributed workspace proxies",
"path": "./admin/workspace-proxies.md",
"icon_path": "./images/icons/networking.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Application Logs",
Expand All @@ -470,21 +489,30 @@
"description": "Learn how to use Audit Logs in your Coder deployment",
"path": "./admin/audit-logs.md",
"icon_path": "./images/icons/radar.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Quotas",
"description": "Learn how to use Workspace Quotas in Coder",
"path": "./admin/quotas.md",
"icon_path": "./images/icons/dollar.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "High Availability",
"description": "Learn how to configure Coder for High Availability",
"path": "./admin/high-availability.md",
"icon_path": "./images/icons/hydra.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Prometheus",
Expand All @@ -497,7 +525,10 @@
"description": "Learn how to configure the appearance of Coder",
"path": "./admin/appearance.md",
"icon_path": "./images/icons/info.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Telemetry",
Expand All @@ -510,7 +541,10 @@
"description": "Learn how to encrypt sensitive data at rest in Coder",
"path": "./admin/encryption.md",
"icon_path": "./images/icons/lock.svg",
"state": ["enterprise", "premium"]
"state": [
"enterprise",
"premium"
]
},
{
"title": "Deployment Health",
Expand All @@ -528,13 +562,17 @@
"title": "Slack Notifications",
"description": "Learn how to setup Slack notifications",
"path": "./admin/notifications/slack.md",
"state": ["beta"]
"state": [
"beta"
]
},
{
"title": "Microsoft Teams Notifications",
"description": "Learn how to setup Microsoft Teams notifications",
"path": "./admin/notifications/teams.md",
"state": ["beta"]
"state": [
"beta"
]
}
]
}
Expand Down
Loading