As a frontend engineer
I need to click an application to switch to the Integration View
So that I can dive into its detailed routing and service integration
Details and Assumptions
- Transitions to Integration View with the selected application’s details on click.
- API: NestJS provides application data via
/board/applications/:id.
- Database: Fetches data from
applications table.
- Assumptions: Application View state is preserved for back navigation.
Acceptance Criteria
Feature: Navigate to Integration View
Scenario: Switch to Integration View
Given the user is logged in and on the Application View
When the user clicks an application block
Then the Integration View loads with the application’s details
And the Application View state is retained for back navigation
Implementation Notes
- API endpoint:
GET /board/applications/:id to fetch application details.
- Database: Query
applications table with Supabase.
- Additional notes: Use Angular routing for view transition, store state in local storage.
As a frontend engineer
I need to click an application to switch to the Integration View
So that I can dive into its detailed routing and service integration
Details and Assumptions
/board/applications/:id.applicationstable.Acceptance Criteria
Implementation Notes
GET /board/applications/:idto fetch application details.applicationstable with Supabase.