feat: rename application route names to kebab-case - #8106
Open
cstns wants to merge 3 commits into
Open
Conversation
Rename all 16 application route names from PascalCase to kebab-case: - Application -> application - ApplicationInstances -> application-instances - ApplicationDashboards -> application-dashboards - ApplicationDevices -> application-devices - ApplicationDeviceGroups -> application-device-groups - ApplicationSnapshots -> application-snapshots - ApplicationPipelines -> application-pipelines - CreatePipeline -> application-pipeline-create - EditPipeline -> application-pipeline-edit - CreatePipelineStage -> application-pipeline-stage-create - EditPipelineStage -> application-pipeline-stage-edit - ApplicationDeviceGroupIndex -> application-device-group - ApplicationDeviceGroupDevices -> application-device-group-devices - ApplicationDeviceGroupSettings -> application-device-group-settings - ApplicationDeviceGroupSettingsGeneral -> application-device-group-settings-general - ApplicationDeviceGroupSettingsEnvironment -> application-device-group-settings-environment Part of #8092 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #8106 +/- ##
=======================================
Coverage 76.17% 76.17%
=======================================
Files 440 440
Lines 23604 23604
Branches 6285 6285
=======================================
Hits 17981 17981
Misses 5623 5623
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
n-lark
approved these changes
Aug 6, 2026
n-lark
left a comment
Contributor
There was a problem hiding this comment.
I shipped a couple fixes for test fixtures and mcp tools route name for Applications -> applications for platform_create_application.
- Application page loads with correct tab selected (instances or devices depending on team features)
- All application tabs navigate correctly (instances, dashboards, devices, device groups, snapshots, pipelines, settings, logs, activity, dependencies)
- Create/edit pipeline flow works
- Create/edit pipeline stage flow works
- Device group pages load and navigate (devices tab, settings tabs)
- Breadcrumbs on application, device group, and create instance pages work
- Application links from device pages, instance pages, audit log, BOM, and global search work
- npm run test:unit:frontend passes
…n-routes # Conflicts: # frontend/src/pages/application/createInstance.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #8092
Part of #8084
Summary
Renames all 16 application route names from PascalCase to kebab-case. This is the largest batch in the epic.
Application->application(23 refs)ApplicationInstances->application-instancesApplicationDashboards->application-dashboardsApplicationDevices->application-devicesApplicationDeviceGroups->application-device-groupsApplicationSnapshots->application-snapshotsApplicationPipelines->application-pipelinesCreatePipeline->application-pipeline-createEditPipeline->application-pipeline-editCreatePipelineStage->application-pipeline-stage-createEditPipelineStage->application-pipeline-stage-editApplicationDeviceGroupIndex->application-device-groupApplicationDeviceGroupDevices->application-device-group-devicesApplicationDeviceGroupSettings->application-device-group-settingsApplicationDeviceGroupSettingsGeneral->application-device-group-settings-generalApplicationDeviceGroupSettingsEnvironment->application-device-group-settings-environmentUpdates ~102 references across 45 files including route definitions, breadcrumbs, tab navigation, API response mappers, pipeline components, device group pages, global search, and the MCP routes test.
Component
defineOptions({ name })properties left as-is.Test plan
npm run test:unit:frontendpasses