As a frontend engineer
I need to connect route events to service endpoints
So that I can define how routes interact with services
Details and Assumptions
- Connects events to endpoints of linked services at the top right.
- API: NestJS handles event-endpoint links via
/board/event-links.
- Database: Stores links in the
event_links table in Supabase.
- Assumptions: Only linked services from Application View are available.
Acceptance Criteria
Feature: Link Events to Service Endpoints
Scenario: Link an event to an endpoint
Given the user is logged in and on the Integration View
When the user drags an event to a service endpoint (e.g., "POST /v1/auth")
Then a connection is created
Implementation Notes
- API endpoint:
POST /board/event-links to create a link.
- Database: Insert into
event_links table.
As a frontend engineer
I need to connect route events to service endpoints
So that I can define how routes interact with services
Details and Assumptions
/board/event-links.event_linkstable in Supabase.Acceptance Criteria
Implementation Notes
POST /board/event-linksto create a link.event_linkstable.