As a frontend engineer
I need to add or edit service attributes (name, description, baseURL)
So that I can define the external dependencies of my applications
Details and Assumptions
- Enables editing of service attributes via a form, ensuring only linked services are available in Integration View.
- API: NestJS manages service data via
/board/services/:id.
- Database: Stores service records in the
services table.
- Assumptions: Services are pre-linked in Application View.
Acceptance Criteria
Feature: Add or Edit Service Details
Scenario: Edit service details
Given the user is logged in and on the Application View
When the user double-clicks a service block
Then a form opens to edit (name, description, baseURL)
And changes are saved and available
Implementation Notes
- API endpoint:
PUT /board/services/:id to update service details.
- Database: Update
services table with auth.
- Additional notes: Filter services by application linkage in Integration View.
As a frontend engineer
I need to add or edit service attributes (name, description, baseURL)
So that I can define the external dependencies of my applications
Details and Assumptions
/board/services/:id.servicestable.Acceptance Criteria
Implementation Notes
PUT /board/services/:idto update service details.servicestable with auth.