diff --git a/forge/ee/lib/mcp/tools/applications.js b/forge/ee/lib/mcp/tools/applications.js
index c79bb502ab..2eec864337 100644
--- a/forge/ee/lib/mcp/tools/applications.js
+++ b/forge/ee/lib/mcp/tools/applications.js
@@ -77,7 +77,7 @@ module.exports = [
Creates a new application in a team.
An application is a container that groups together hosted instances and remote instances that work together.
Before invoking this tool, call platform_list_applications for this team to check whether an application with this name already exists. If one exists, ask the user whether to use the existing one or create a new one with the same name - DO NOT create a duplicate application without asking first.
- After the application is created, ask the user if they want to be taken to it. If they do, use the ui_navigate tool with the route name "Application" and params { id: }.`,
+ After the application is created, ask the user if they want to be taken to it. If they do, use the ui_navigate tool with the route name "application" and params { id: }.`,
annotations: { readOnlyHint: false, destructiveHint: false },
inputSchema: {
name: z.string().describe('Name for the new application'),
diff --git a/frontend/src/api/team.ts b/frontend/src/api/team.ts
index 9f235e98ae..01021fd1ee 100644
--- a/frontend/src/api/team.ts
+++ b/frontend/src/api/team.ts
@@ -160,7 +160,7 @@ const getTeamInstances = async (teamId: string) => {
res.data.projects = res.data.projects.map(r => {
r.createdSince = daysSince(r.createdAt)
r.updatedSince = daysSince(r.updatedAt)
- r.link = { name: 'Application', params: { id: r.id } }
+ r.link = { name: 'application', params: { id: r.id } }
promises.push(client.get(`/api/v1/projects/${r.id}`).then(p => {
r.status = p.data.meta.state
r.flowLastUpdatedAt = p.data.flowLastUpdatedAt
@@ -183,7 +183,7 @@ const getTeamDashboards = async (teamId: string) => {
r.updatedSince = daysSince(r.updatedAt)
r.flowLastUpdatedSince = daysSince(r.flowLastUpdatedAt)
- r.link = { name: 'Application', params: { id: r.id } }
+ r.link = { name: 'application', params: { id: r.id } }
return r
})
diff --git a/frontend/src/components/DevicesBrowser.vue b/frontend/src/components/DevicesBrowser.vue
index a0c133e29f..262d7fa584 100644
--- a/frontend/src/components/DevicesBrowser.vue
+++ b/frontend/src/components/DevicesBrowser.vue
@@ -239,7 +239,7 @@
Here, you will see a list of Devices belonging to this Application.
- You can deploy Snapshots of this Application to your connected Devices.
+ You can deploy Snapshots of this Application to your connected Devices.
A full list of your Team's Devices are available {{ association.name }}
- {{ association.name }}
+ {{ association.name }}
This Team
diff --git a/frontend/src/components/bill-of-materials/InstancesItem.vue b/frontend/src/components/bill-of-materials/InstancesItem.vue
index a2527f7cf1..a55d716ab0 100644
--- a/frontend/src/components/bill-of-materials/InstancesItem.vue
+++ b/frontend/src/components/bill-of-materials/InstancesItem.vue
@@ -14,7 +14,7 @@
-
+
{{ instance.app.name }}
diff --git a/frontend/src/components/global-search/components/ResultSection.vue b/frontend/src/components/global-search/components/ResultSection.vue
index 3517d46974..66f29c7d7c 100644
--- a/frontend/src/components/global-search/components/ResultSection.vue
+++ b/frontend/src/components/global-search/components/ResultSection.vue
@@ -91,7 +91,7 @@ export default {
switch (this.resultType) {
case 'application':
params.team_slug = this.team.slug
- routeName = 'Application'
+ routeName = 'application'
break
case 'instance':
routeName = 'instance-overview'
diff --git a/frontend/src/components/pipelines/PipelineRow.vue b/frontend/src/components/pipelines/PipelineRow.vue
index 32012ebab3..f7c9272fcf 100644
--- a/frontend/src/components/pipelines/PipelineRow.vue
+++ b/frontend/src/components/pipelines/PipelineRow.vue
@@ -187,7 +187,7 @@ export default {
slugify,
addStage: function () {
const route = {
- name: 'CreatePipelineStage',
+ name: 'application-pipeline-stage-create',
params: {
id: this.application.id,
pipelineId: this.pipeline.id
diff --git a/frontend/src/components/pipelines/Stage.vue b/frontend/src/components/pipelines/Stage.vue
index 7f3ddd7cce..b01304079d 100644
--- a/frontend/src/components/pipelines/Stage.vue
+++ b/frontend/src/components/pipelines/Stage.vue
@@ -79,7 +79,7 @@
-
+
Device Group:
@@ -330,7 +330,7 @@ export default {
},
edit () {
const route = {
- name: 'EditPipelineStage',
+ name: 'application-pipeline-stage-edit',
params: {
// url params
id: this.application.id,
diff --git a/frontend/src/composables/Dashboards.ts b/frontend/src/composables/Dashboards.ts
index 79053d9ef8..00fcbb62cb 100644
--- a/frontend/src/composables/Dashboards.ts
+++ b/frontend/src/composables/Dashboards.ts
@@ -102,7 +102,7 @@ export function useDashboardScope (scope: string) {
homeRoute: computed(() => {
const app = contextStore.application
if (!app) return null
- return { name: 'ApplicationDashboards', params: { team_slug: route.params.team_slug, id: app.id } }
+ return { name: 'application-dashboards', params: { team_slug: route.params.team_slug, id: app.id } }
}),
ensureContext: () => {
const slug = route.params.team_slug as string
diff --git a/frontend/src/mixins/Instance.js b/frontend/src/mixins/Instance.js
index be41987841..01e0bf0aee 100644
--- a/frontend/src/mixins/Instance.js
+++ b/frontend/src/mixins/Instance.js
@@ -105,7 +105,7 @@ export default {
},
onInstanceDelete () {
this.$router.push({
- name: 'ApplicationInstances',
+ name: 'application-instances',
params: { id: this.instance.application.id, team_slug: this.team.slug }
})
}
diff --git a/frontend/src/pages/application/Activity.vue b/frontend/src/pages/application/Activity.vue
index 7fc64e1165..ac2daba741 100644
--- a/frontend/src/pages/application/Activity.vue
+++ b/frontend/src/pages/application/Activity.vue
@@ -98,13 +98,13 @@ export default {
},
teamMembership () {
if (!this.hasPermission('application:audit-log', { applicationId: this.applicationId })) {
- return this.$router.push({ name: 'Application', params: this.$route.params })
+ return this.$router.push({ name: 'application', params: this.$route.params })
}
}
},
created () {
if (!this.hasPermission('application:audit-log', { applicationId: this.applicationId })) {
- return this.$router.replace({ name: 'Application', params: this.$route.params })
+ return this.$router.replace({ name: 'application', params: this.$route.params })
}
this.triggerLoad({ users: true, events: true })
},
diff --git a/frontend/src/pages/application/CreateInstanceMultiStep.vue b/frontend/src/pages/application/CreateInstanceMultiStep.vue
index b1cb780533..e2e6b56949 100644
--- a/frontend/src/pages/application/CreateInstanceMultiStep.vue
+++ b/frontend/src/pages/application/CreateInstanceMultiStep.vue
@@ -127,7 +127,7 @@ export default {
this.$emit('application-updated')
this.$router.push({
- name: 'ApplicationInstances',
+ name: 'application-instances',
params: { id: this.application.id }
})
}
diff --git a/frontend/src/pages/application/Dashboards.vue b/frontend/src/pages/application/Dashboards.vue
index 5eadd633b2..70235355be 100644
--- a/frontend/src/pages/application/Dashboards.vue
+++ b/frontend/src/pages/application/Dashboards.vue
@@ -7,5 +7,5 @@
diff --git a/frontend/src/pages/application/Dependencies/Dependencies.vue b/frontend/src/pages/application/Dependencies/Dependencies.vue
index bef685d9cf..f912fa0c0a 100644
--- a/frontend/src/pages/application/Dependencies/Dependencies.vue
+++ b/frontend/src/pages/application/Dependencies/Dependencies.vue
@@ -101,7 +101,7 @@ export default {
},
mounted () {
if (!this.hasTeamPermission) {
- return this.$router.push({ name: 'Application', params: { id: this.application.id } })
+ return this.$router.push({ name: 'application', params: { id: this.application.id } })
}
this.getDependencies()
},
diff --git a/frontend/src/pages/application/DeviceGroup/Settings/Environment.vue b/frontend/src/pages/application/DeviceGroup/Settings/Environment.vue
index 1c0c4c5142..88363ca74f 100644
--- a/frontend/src/pages/application/DeviceGroup/Settings/Environment.vue
+++ b/frontend/src/pages/application/DeviceGroup/Settings/Environment.vue
@@ -48,7 +48,7 @@ import TemplateSettingsEnvironment from '../../../admin/Template/sections/Enviro
*/
export default {
- name: 'ApplicationDeviceGroupSettingsEnvironment',
+ name: 'application-device-group-settings-environment',
components: {
ExclamationCircleIcon,
TemplateSettingsEnvironment
diff --git a/frontend/src/pages/application/DeviceGroup/Settings/General.vue b/frontend/src/pages/application/DeviceGroup/Settings/General.vue
index a40dbec52e..40718fa46a 100644
--- a/frontend/src/pages/application/DeviceGroup/Settings/General.vue
+++ b/frontend/src/pages/application/DeviceGroup/Settings/General.vue
@@ -60,7 +60,7 @@ import Alerts from '../../../../services/alerts.js'
import Dialog from '../../../../services/dialog.js'
export default {
- name: 'ApplicationDeviceGroupSettingsGeneral',
+ name: 'application-device-group-settings-general',
components: {
FormRow,
FormHeading
@@ -152,7 +152,7 @@ export default {
if (response.status === 200) {
Alerts.emit('Device Group deleted', 'confirmation')
this.$router.push({
- name: 'ApplicationDeviceGroups',
+ name: 'application-device-groups',
params: {
id: this.application.id
}
diff --git a/frontend/src/pages/application/DeviceGroup/Settings/index.vue b/frontend/src/pages/application/DeviceGroup/Settings/index.vue
index bb77c84781..9a96d111ce 100644
--- a/frontend/src/pages/application/DeviceGroup/Settings/index.vue
+++ b/frontend/src/pages/application/DeviceGroup/Settings/index.vue
@@ -59,8 +59,8 @@ export default {
return false
}
this.sideNavigation = [
- { name: 'General', path: { name: 'ApplicationDeviceGroupSettingsGeneral' } },
- { name: 'Environment', path: { name: 'ApplicationDeviceGroupSettingsEnvironment' } }
+ { name: 'General', path: { name: 'application-device-group-settings-general' } },
+ { name: 'Environment', path: { name: 'application-device-group-settings-environment' } }
]
return true
},
diff --git a/frontend/src/pages/application/DeviceGroup/index.vue b/frontend/src/pages/application/DeviceGroup/index.vue
index 9df2caa261..d037cd49de 100644
--- a/frontend/src/pages/application/DeviceGroup/index.vue
+++ b/frontend/src/pages/application/DeviceGroup/index.vue
@@ -15,10 +15,10 @@
Applications
-
+
{{ application.name }}
-
+
Device Groups
@@ -41,7 +41,7 @@
Application:
- {{ application?.name }}
+ {{ application?.name }}
@@ -101,7 +101,7 @@ export default {
{
label: 'Devices',
to: {
- name: 'ApplicationDeviceGroupDevices',
+ name: 'application-device-group-devices',
params: {
applicationId: this.application?.id,
deviceGroupId: this.deviceGroup?.id
@@ -113,7 +113,7 @@ export default {
{
label: 'Settings',
to: {
- name: 'ApplicationDeviceGroupSettings',
+ name: 'application-device-group-settings',
params: {
applicationId: this.application?.id,
deviceGroupId: this.deviceGroup?.id
diff --git a/frontend/src/pages/application/DeviceGroups.vue b/frontend/src/pages/application/DeviceGroups.vue
index a2ea411423..192f64c9c3 100644
--- a/frontend/src/pages/application/DeviceGroups.vue
+++ b/frontend/src/pages/application/DeviceGroups.vue
@@ -90,7 +90,7 @@ import { useAccountSettingsStore } from '@/stores/account-settings.js'
import { useContextStore } from '@/stores/context.js'
export default {
- name: 'ApplicationDeviceGroups',
+ name: 'application-device-groups',
components: {
EmptyState,
FormRow,
@@ -173,7 +173,7 @@ export default {
teamMembership: {
handler: function () {
if (!this.hasPermission('application:device-group:list', { application: this.application })) {
- return this.$router.push({ name: 'Application', params: this.$route.params })
+ return this.$router.push({ name: 'application', params: this.$route.params })
}
},
immediate: true
@@ -206,7 +206,7 @@ export default {
async editDeviceGroup (deviceGroup, index) {
// navigate to the device group details page for the selected device group @ ./DeviceGroups/edit.vue
const route = {
- name: 'ApplicationDeviceGroupIndex',
+ name: 'application-device-group',
params: {
// url params
applicationId: this.application.id,
diff --git a/frontend/src/pages/application/Devices.vue b/frontend/src/pages/application/Devices.vue
index 4466e63e8c..a8bd12d7e2 100644
--- a/frontend/src/pages/application/Devices.vue
+++ b/frontend/src/pages/application/Devices.vue
@@ -20,7 +20,7 @@ import DevicesBrowser from '../../components/DevicesBrowser.vue'
import SectionTopMenu from '../../components/SectionTopMenu.vue'
export default {
- name: 'ApplicationDevices',
+ name: 'application-devices',
components: {
DevicesBrowser,
SectionTopMenu
diff --git a/frontend/src/pages/application/Pipeline/create.vue b/frontend/src/pages/application/Pipeline/create.vue
index e0e8745f88..ce9782ce97 100644
--- a/frontend/src/pages/application/Pipeline/create.vue
+++ b/frontend/src/pages/application/Pipeline/create.vue
@@ -63,7 +63,7 @@ import Alerts from '../../../services/alerts.js'
import { useContextStore } from '@/stores/context.js'
export default {
- name: 'CreatePipeline',
+ name: 'application-pipeline-create',
components: {
SectionTopMenu,
FormRow
@@ -103,7 +103,7 @@ export default {
handler (team) {
if (team && !this.hasPermission('pipeline:create')) {
this.$router.replace({
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
params: {
id: this.application.id
}
@@ -123,7 +123,7 @@ export default {
Alerts.emit('Pipeline successfully created.', 'confirmation')
this.$router.push({
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
params: {
id: this.application.id
}
diff --git a/frontend/src/pages/application/Pipeline/index.vue b/frontend/src/pages/application/Pipeline/index.vue
index bac0a3a4e8..a23611c3f5 100644
--- a/frontend/src/pages/application/Pipeline/index.vue
+++ b/frontend/src/pages/application/Pipeline/index.vue
@@ -51,7 +51,7 @@ export default {
if (this.hasPermission('application:pipeline:list')) {
await this.fetchData()
} else {
- return this.$router.push({ name: 'Application', params: this.$route.params })
+ return this.$router.push({ name: 'application', params: this.$route.params })
}
},
methods: {
diff --git a/frontend/src/pages/application/PipelineStage/create.vue b/frontend/src/pages/application/PipelineStage/create.vue
index 3fdf35014e..98863433a6 100644
--- a/frontend/src/pages/application/PipelineStage/create.vue
+++ b/frontend/src/pages/application/PipelineStage/create.vue
@@ -27,7 +27,7 @@ import PipelineStageForm from './form.vue'
import { useContextStore } from '@/stores/context.js'
export default {
- name: 'CreatePipelineStage',
+ name: 'application-pipeline-stage-create',
components: {
PipelineStageForm
},
@@ -75,7 +75,7 @@ export default {
handler (team) {
if (team && !this.hasPermission('pipeline:create')) {
this.$router.replace({
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
params: {
id: this.application.id
}
@@ -129,7 +129,7 @@ export default {
Alerts.emit('Pipeline stage successfully added.', 'confirmation')
this.$router.push({
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
params: {
id: this.application.id
}
diff --git a/frontend/src/pages/application/PipelineStage/edit.vue b/frontend/src/pages/application/PipelineStage/edit.vue
index c98f1c358d..e7403bfd37 100644
--- a/frontend/src/pages/application/PipelineStage/edit.vue
+++ b/frontend/src/pages/application/PipelineStage/edit.vue
@@ -31,7 +31,7 @@ import PipelineStageForm from './form.vue'
import { useContextStore } from '@/stores/context.js'
export default {
- name: 'EditPipelineStage',
+ name: 'application-pipeline-stage-edit',
components: {
PipelineStageForm
},
@@ -79,7 +79,7 @@ export default {
handler (team) {
if (team && !this.hasPermission('pipeline:edit')) {
this.$router.replace({
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
params: {
id: this.application.id
}
@@ -144,7 +144,7 @@ export default {
Alerts.emit('Pipeline stage successfully updated.', 'confirmation')
this.$router.push({
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
params: {
id: this.application.id
}
diff --git a/frontend/src/pages/application/Pipelines.vue b/frontend/src/pages/application/Pipelines.vue
index fbb3086c34..6f5b093539 100644
--- a/frontend/src/pages/application/Pipelines.vue
+++ b/frontend/src/pages/application/Pipelines.vue
@@ -26,7 +26,7 @@
v-if="hasPermission('pipeline:create', { application })"
data-action="pipeline-add"
:to="{
- name: 'CreatePipeline',
+ name: 'application-pipeline-create',
params: { applicationId: application.id },
}"
:disabled="!featureEnabled"
@@ -82,7 +82,7 @@
- {{ name }}
+ {{ name }}
Unassigned
diff --git a/frontend/src/pages/application/components/cells/DeviceAssignedToLink.vue b/frontend/src/pages/application/components/cells/DeviceAssignedToLink.vue
index 88e59f5a51..eab4fa31b5 100644
--- a/frontend/src/pages/application/components/cells/DeviceAssignedToLink.vue
+++ b/frontend/src/pages/application/components/cells/DeviceAssignedToLink.vue
@@ -3,7 +3,7 @@
{{ instance.name }}
- {{ application.name }}
+ {{ application.name }}
Unassigned
diff --git a/frontend/src/pages/application/createInstance.vue b/frontend/src/pages/application/createInstance.vue
index 5149cfff36..d3adfad848 100644
--- a/frontend/src/pages/application/createInstance.vue
+++ b/frontend/src/pages/application/createInstance.vue
@@ -4,7 +4,7 @@
Applications
-
+
{{ application.name }}
@@ -119,7 +119,7 @@ export default {
this.$emit('application-updated')
- this.$router.push({ name: 'ApplicationInstances', params: { id: this.application.id } })
+ this.$router.push({ name: 'application-instances', params: { id: this.application.id } })
} catch (err) {
this.instanceDetails = instanceFields
if (err.response?.status === 409) {
diff --git a/frontend/src/pages/application/index.vue b/frontend/src/pages/application/index.vue
index 3f9447ecdb..76b615cb6d 100644
--- a/frontend/src/pages/application/index.vue
+++ b/frontend/src/pages/application/index.vue
@@ -100,24 +100,24 @@ export default {
const routes = [
{
label: 'Hosted Instances',
- to: { name: 'ApplicationInstances' },
+ to: { name: 'application-instances' },
tag: 'application-overview'
// icon: ProjectsIcon
},
{
label: 'Remote Instances',
- to: { name: 'ApplicationDevices' },
+ to: { name: 'application-devices' },
tag: 'application-devices-overview'
// icon: CpuChipIcon
},
{
label: 'Dashboards',
- to: { name: 'ApplicationDashboards' },
+ to: { name: 'application-dashboards' },
tag: 'application-dashboards'
},
{
label: 'Device Groups',
- to: { name: 'ApplicationDeviceGroups' },
+ to: { name: 'application-device-groups' },
tag: 'application-devices-groups-overview',
// icon: CpuChipIcon,
hidden: !this.hasPermission('application:device-group:list', { application: this.application }),
@@ -125,13 +125,13 @@ export default {
},
{
label: 'Snapshots',
- to: { name: 'ApplicationSnapshots' },
+ to: { name: 'application-snapshots' },
tag: 'application-snapshots'
// icon: ClockIcon
},
{
label: 'Pipelines',
- to: { name: 'ApplicationPipelines' },
+ to: { name: 'application-pipelines' },
tag: 'application-pipelines',
// icon: PipelinesIcon,
hidden: !this.hasPermission('application:pipeline:list', { application: this.application }),
diff --git a/frontend/src/pages/application/routes.js b/frontend/src/pages/application/routes.js
index 6615337def..5099e4bb66 100644
--- a/frontend/src/pages/application/routes.js
+++ b/frontend/src/pages/application/routes.js
@@ -30,12 +30,12 @@ export default [
redirect: function () {
const features = useAccountSettingsStore().featuresCheck
if (features.isHostedInstancesEnabledForTeam) {
- return { name: 'ApplicationInstances' }
+ return { name: 'application-instances' }
} else {
- return { name: 'ApplicationDevices' }
+ return { name: 'application-devices' }
}
},
- name: 'Application',
+ name: 'application',
component: ApplicationIndex,
meta: {
title: 'Application - Overview'
@@ -43,7 +43,7 @@ export default [
children: [
{
path: 'instances',
- name: 'ApplicationInstances',
+ name: 'application-instances',
component: ApplicationOverview,
meta: {
title: 'Application - Instances'
@@ -51,7 +51,7 @@ export default [
},
{
path: 'dashboards',
- name: 'ApplicationDashboards',
+ name: 'application-dashboards',
component: ApplicationDashboards,
meta: {
title: 'Application - Dashboards'
@@ -59,7 +59,7 @@ export default [
},
{
path: 'devices',
- name: 'ApplicationDevices',
+ name: 'application-devices',
component: ApplicationDevices,
meta: {
title: 'Application - Devices'
@@ -67,7 +67,7 @@ export default [
},
{
path: 'device-groups',
- name: 'ApplicationDeviceGroups',
+ name: 'application-device-groups',
component: ApplicationDeviceGroups,
meta: {
title: 'Application - Devices Groups'
@@ -75,7 +75,7 @@ export default [
},
{
path: 'snapshots',
- name: 'ApplicationSnapshots',
+ name: 'application-snapshots',
component: ApplicationSnapshots,
meta: {
title: 'Application - Snapshots'
@@ -83,7 +83,7 @@ export default [
},
{
path: 'pipelines',
- name: 'ApplicationPipelines',
+ name: 'application-pipelines',
component: ApplicationPipelines,
meta: {
title: 'Application - Pipelines'
@@ -134,7 +134,7 @@ export default [
{
path: 'pipelines/create',
- name: 'CreatePipeline',
+ name: 'application-pipeline-create',
component: ApplicationPipelineCreate,
meta: {
title: 'Pipeline - Create'
@@ -143,16 +143,16 @@ export default [
{
path: 'pipelines/:pipelineId',
- name: 'EditPipeline',
+ name: 'application-pipeline-edit',
component: ApplicationPipelineIndex,
meta: {
title: 'Pipeline'
},
- redirect: { name: 'CreatePipelineStage' },
+ redirect: { name: 'application-pipeline-stage-create' },
children: [
{
path: 'stages/create',
- name: 'CreatePipelineStage',
+ name: 'application-pipeline-stage-create',
component: ApplicationPipelineStageCreate,
meta: {
title: 'Pipeline Stage - Create'
@@ -160,7 +160,7 @@ export default [
},
{
path: 'stages/:stageId/edit',
- name: 'EditPipelineStage',
+ name: 'application-pipeline-stage-edit',
component: ApplicationPipelineStageEdit,
meta: {
title: 'Pipeline Stage - Edit'
@@ -189,7 +189,7 @@ export default [
backTo: ({ query, params }) => {
return {
label: 'Back',
- to: { name: 'ApplicationInstances', params, query }
+ to: { name: 'application-instances', params, query }
}
}
}
@@ -197,16 +197,16 @@ export default [
},
{
path: ':applicationId/device-group/:deviceGroupId',
- name: 'ApplicationDeviceGroupIndex',
+ name: 'application-device-group',
component: ApplicationDeviceGroupIndex,
meta: {
title: 'Application - Device Group'
},
- redirect: { name: 'ApplicationDeviceGroupDevices' },
+ redirect: { name: 'application-device-group-devices' },
children: [
{
path: 'devices',
- name: 'ApplicationDeviceGroupDevices',
+ name: 'application-device-group-devices',
component: ApplicationDeviceGroupDevices,
meta: {
title: 'Application - Device Group - Members'
@@ -214,18 +214,18 @@ export default [
},
{
path: 'settings',
- name: 'ApplicationDeviceGroupSettings',
+ name: 'application-device-group-settings',
component: ApplicationDeviceGroupSettings,
meta: {
title: 'Application - Device Group - Settings'
},
redirect: {
- name: 'ApplicationDeviceGroupSettingsGeneral'
+ name: 'application-device-group-settings-general'
},
children: [
{
path: 'general',
- name: 'ApplicationDeviceGroupSettingsGeneral',
+ name: 'application-device-group-settings-general',
component: ApplicationDeviceGroupSettingsGeneral,
meta: {
title: 'Application - Device Group - Settings - General'
@@ -233,7 +233,7 @@ export default [
},
{
path: 'environment',
- name: 'ApplicationDeviceGroupSettingsEnvironment',
+ name: 'application-device-group-settings-environment',
component: ApplicationDeviceGroupSettingsEnvironment,
meta: {
title: 'Application - Device Group - Settings - Environment'
diff --git a/frontend/src/pages/device/Overview.vue b/frontend/src/pages/device/Overview.vue
index caaf89fbe1..44f78dd1cb 100644
--- a/frontend/src/pages/device/Overview.vue
+++ b/frontend/src/pages/device/Overview.vue
@@ -55,7 +55,7 @@
-
+
{{ device.application?.name }}
None
@@ -66,7 +66,7 @@
Application:
- {{ device.application.name }}
+ {{ device.application.name }}
Features:
@@ -93,7 +93,7 @@
Group:
Application:
- {{ device.application?.name }}
+ {{ device.application?.name }}
Instance:
diff --git a/frontend/src/pages/instance/index.vue b/frontend/src/pages/instance/index.vue
index bfdb6ca2d8..f29dd669b0 100644
--- a/frontend/src/pages/instance/index.vue
+++ b/frontend/src/pages/instance/index.vue
@@ -31,7 +31,7 @@
Application:
-
+
{{ instance.application.name }}
diff --git a/frontend/src/pages/team/Applications/components/ApplicationHeader.vue b/frontend/src/pages/team/Applications/components/ApplicationHeader.vue
index 18e4a12ff9..e8b209623c 100644
--- a/frontend/src/pages/team/Applications/components/ApplicationHeader.vue
+++ b/frontend/src/pages/team/Applications/components/ApplicationHeader.vue
@@ -1,6 +1,6 @@
diff --git a/frontend/src/pages/team/Applications/components/compact/DevicesWrapper.vue b/frontend/src/pages/team/Applications/components/compact/DevicesWrapper.vue
index 60ee5bf86a..e6a6fc3893 100644
--- a/frontend/src/pages/team/Applications/components/compact/DevicesWrapper.vue
+++ b/frontend/src/pages/team/Applications/components/compact/DevicesWrapper.vue
@@ -6,7 +6,7 @@
This Application currently has no
- attached Remote Instances .
+ attached Remote Instances .
@@ -76,7 +76,7 @@ export default {
methods: {
onCounterClick (state) {
this.$router.push({
- name: 'ApplicationDevices',
+ name: 'application-devices',
params: { team_slug: this.team.slug, id: this.application.id },
query: { status: state }
})
diff --git a/frontend/src/pages/team/Applications/components/compact/InstancesWrapper.vue b/frontend/src/pages/team/Applications/components/compact/InstancesWrapper.vue
index 703c77fc60..fd486b73eb 100644
--- a/frontend/src/pages/team/Applications/components/compact/InstancesWrapper.vue
+++ b/frontend/src/pages/team/Applications/components/compact/InstancesWrapper.vue
@@ -6,7 +6,7 @@
This Application currently has no
- attached Hosted Instances .
+ attached Hosted Instances .
@@ -74,7 +74,7 @@ export default {
methods: {
onCounterClick (state) {
this.$router.push({
- name: 'ApplicationInstances',
+ name: 'application-instances',
params: { team_slug: this.team.slug, id: this.application.id },
query: { status: state }
})
diff --git a/frontend/src/pages/team/DeviceGroups/index.vue b/frontend/src/pages/team/DeviceGroups/index.vue
index f9bc98ac74..c33e92aea5 100644
--- a/frontend/src/pages/team/DeviceGroups/index.vue
+++ b/frontend/src/pages/team/DeviceGroups/index.vue
@@ -251,7 +251,7 @@ export default {
},
goToGroup (row) {
return this.$router.push({
- name: 'ApplicationDeviceGroupIndex',
+ name: 'application-device-group',
params: {
deviceGroupId: row.id,
applicationId: row.application.id
diff --git a/frontend/src/pages/team/Pipelines/components/TeamPipeline.vue b/frontend/src/pages/team/Pipelines/components/TeamPipeline.vue
index bd20bf4199..ef3165201e 100644
--- a/frontend/src/pages/team/Pipelines/components/TeamPipeline.vue
+++ b/frontend/src/pages/team/Pipelines/components/TeamPipeline.vue
@@ -1,7 +1,7 @@