Skip to content

Commit 99b993d

Browse files
committed
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.
1 parent d04eaf8 commit 99b993d

File tree

1 file changed

+52
-14
lines changed

1 file changed

+52
-14
lines changed

docs/manifest.json

Lines changed: 52 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
2-
"versions": ["main"],
2+
"versions": [
3+
"main"
4+
],
35
"routes": [
46
{
57
"title": "About",
@@ -282,7 +284,10 @@
282284
"title": "Process Logging",
283285
"description": "Audit commands in workspaces with exectrace",
284286
"path": "./templates/process-logging.md",
285-
"state": ["enterprise", "premium"]
287+
"state": [
288+
"enterprise",
289+
"premium"
290+
]
286291
},
287292
{
288293
"title": "Icons",
@@ -393,21 +398,29 @@
393398
"description": "Learn how to manage user groups",
394399
"path": "./admin/groups.md",
395400
"icon_path": "./images/icons/group.svg",
396-
"state": ["enterprise", "premium"]
401+
"state": [
402+
"enterprise",
403+
"premium"
404+
]
397405
},
398406
{
399407
"title": "Organizations",
400408
"description": "Learn how to manage organizations",
401409
"path": "./admin/organizations.md",
402410
"icon_path": "./images/icons/orgs.svg",
403-
"state": ["enterprise", "premium"]
411+
"state": [
412+
"premium"
413+
]
404414
},
405415
{
406416
"title": "Template RBAC",
407417
"description": "Learn how to use the role based access control against templates",
408418
"path": "./admin/rbac.md",
409419
"icon_path": "./images/icons/rbac.svg",
410-
"state": ["enterprise", "beta"]
420+
"state": [
421+
"enterprise",
422+
"beta"
423+
]
411424
},
412425
{
413426
"title": "Configuration",
@@ -450,14 +463,20 @@
450463
"description": "Run provisioners isolated from the Coder server",
451464
"path": "./admin/provisioners.md",
452465
"icon_path": "./images/icons/queue.svg",
453-
"state": ["enterprise", "premium"]
466+
"state": [
467+
"enterprise",
468+
"premium"
469+
]
454470
},
455471
{
456472
"title": "Workspace Proxies",
457473
"description": "Run geo distributed workspace proxies",
458474
"path": "./admin/workspace-proxies.md",
459475
"icon_path": "./images/icons/networking.svg",
460-
"state": ["enterprise", "premium"]
476+
"state": [
477+
"enterprise",
478+
"premium"
479+
]
461480
},
462481
{
463482
"title": "Application Logs",
@@ -470,21 +489,30 @@
470489
"description": "Learn how to use Audit Logs in your Coder deployment",
471490
"path": "./admin/audit-logs.md",
472491
"icon_path": "./images/icons/radar.svg",
473-
"state": ["enterprise", "premium"]
492+
"state": [
493+
"enterprise",
494+
"premium"
495+
]
474496
},
475497
{
476498
"title": "Quotas",
477499
"description": "Learn how to use Workspace Quotas in Coder",
478500
"path": "./admin/quotas.md",
479501
"icon_path": "./images/icons/dollar.svg",
480-
"state": ["enterprise", "premium"]
502+
"state": [
503+
"enterprise",
504+
"premium"
505+
]
481506
},
482507
{
483508
"title": "High Availability",
484509
"description": "Learn how to configure Coder for High Availability",
485510
"path": "./admin/high-availability.md",
486511
"icon_path": "./images/icons/hydra.svg",
487-
"state": ["enterprise", "premium"]
512+
"state": [
513+
"enterprise",
514+
"premium"
515+
]
488516
},
489517
{
490518
"title": "Prometheus",
@@ -497,7 +525,10 @@
497525
"description": "Learn how to configure the appearance of Coder",
498526
"path": "./admin/appearance.md",
499527
"icon_path": "./images/icons/info.svg",
500-
"state": ["enterprise", "premium"]
528+
"state": [
529+
"enterprise",
530+
"premium"
531+
]
501532
},
502533
{
503534
"title": "Telemetry",
@@ -510,7 +541,10 @@
510541
"description": "Learn how to encrypt sensitive data at rest in Coder",
511542
"path": "./admin/encryption.md",
512543
"icon_path": "./images/icons/lock.svg",
513-
"state": ["enterprise", "premium"]
544+
"state": [
545+
"enterprise",
546+
"premium"
547+
]
514548
},
515549
{
516550
"title": "Deployment Health",
@@ -528,13 +562,17 @@
528562
"title": "Slack Notifications",
529563
"description": "Learn how to setup Slack notifications",
530564
"path": "./admin/notifications/slack.md",
531-
"state": ["beta"]
565+
"state": [
566+
"beta"
567+
]
532568
},
533569
{
534570
"title": "Microsoft Teams Notifications",
535571
"description": "Learn how to setup Microsoft Teams notifications",
536572
"path": "./admin/notifications/teams.md",
537-
"state": ["beta"]
573+
"state": [
574+
"beta"
575+
]
538576
}
539577
]
540578
}

0 commit comments

Comments
 (0)