As a frontend engineer
I need to set route attributes (URL, params) and add events (onLoad, onLogin, custom)
So that I can specify navigation behavior
Details and Assumptions
- Allows setting route attributes and adding predefined/custom events.
- API: NestJS manages route data via
/board/routes/:id.
- Database: Stores routes in the
routes table in Supabase.
- Assumptions: Events are sub-nodes under routes.
Acceptance Criteria
Feature: Define Route Attributes and Events
Scenario: Define route details
Given the user is logged in and on the Integration View
When the user double-clicks a route
Then a form opens to set (URL, params) and add events (onLoad, custom)
And events are displayed as sub-nodes
Implementation Notes
- API endpoint:
PUT /board/routes/:id to update route details.
- Database: Update
routes table .
- Additional notes: Use Angular forms for input, display events as nested nodes.
As a frontend engineer
I need to set route attributes (URL, params) and add events (onLoad, onLogin, custom)
So that I can specify navigation behavior
Details and Assumptions
/board/routes/:id.routestable in Supabase.Acceptance Criteria
Implementation Notes
PUT /board/routes/:idto update route details.routestable .