Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@babel/core": "^7.29.0",
"@codemirror/lang-json": "^6.0.0",
"@conduction/nextcloud-vue": "^2.3.0",
"@conduction/nextcloud-vue": "^2.19.0",
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/capabilities": "^1.2.1",
Expand Down
2 changes: 2 additions & 0 deletions src/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ import ShieldAlertOutline from 'vue-material-design-icons/ShieldAlertOutline.vue
import ShieldCheckOutline from 'vue-material-design-icons/ShieldCheckOutline.vue'
import ShieldLockOutline from 'vue-material-design-icons/ShieldLockOutline.vue'
import ShieldOutline from 'vue-material-design-icons/ShieldOutline.vue'
import Sitemap from 'vue-material-design-icons/Sitemap.vue'
import SourceBranch from 'vue-material-design-icons/SourceBranch.vue'
import Star from 'vue-material-design-icons/Star.vue'
import ViewDashboardOutline from 'vue-material-design-icons/ViewDashboardOutline.vue'
Expand Down Expand Up @@ -109,6 +110,7 @@ export default {
ShieldCheckOutline,
ShieldLockOutline,
ShieldOutline,
Sitemap,
SourceBranch,
Star,
ViewDashboardOutline,
Expand Down
24 changes: 24 additions & 0 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,14 @@
"route": "FeaturesRoadmap",
"section": "footer",
"order": 95
},
{
"id": "FlowsMenu",
"label": "Flows",
"icon": "Sitemap",
"route": "Flows",
"section": "settings",
"order": 96
}
],
"pages": [
Expand Down Expand Up @@ -819,6 +827,22 @@
"config": {
"documentationUrl": "https://stackiq.conduction.nl"
}
},
{
"id": "Flows",
"route": "/flows",
"type": "flows",
"title": "Flows",
"config": { "app": "stackiq" },
"_note": "ADR-110 Decision 4: a flow is app-specific, so the authoring surface lives here rather than behind a deep link to another app's list. Rendered by the shared CnFlowsPage page type over OpenRegister's one native flow store (ADR-065), scoped to this app."
},
{
"id": "FlowDetail",
"route": "/flows/:id",
"type": "flow-detail",
"title": "Flow",
"config": { "app": "stackiq" },
"_note": "The shared CnFlowDetail canvas over the same single engine. Controls render in the NC app sidebar so the canvas keeps full width."
}
]
}
Loading