Alon Peretz
Alon Peretz
- Integrate the workflows table from the `workflows-dashboard` project into the "Workflows" tab (`/en/workflows` in the backoffice). - Use existing code from the backoffice and workflows-dashboard as reference - Ensure...
1. Implement Statistics view 1.1. Personal Statistics Section: - Implement the "Assigned to Cases" feature: - Create a new endpoint in the backend API: `GET /case-management/metrics/user/cases`. - Retrieve the number...
Task Definition What? Add a search query params schema for from and to dates to be used with useZodSearchParams. Why? To enable date range filtering on the Statistics page, allowing...
What? Integrate ShadCN's Tabs component in the Statistics page, with "Statistics" and "Workflows" tabs. Why? To enhance navigation within the Statistics page, allowing users to switch between Statistics and Workflows...
Description Add a "Home" page to the navigation bar, represented by the Home icon. Integrate the new "Statistics" and "Cases" routes into the application's routing structure within the authenticated layout....
Add a new enum to the `@ballerine/common` under `common/src/consts/index.ts` typescript ``` export const UserRole = { VIEWER: 1, AGENT: 5, MANAGER: 10, } as const; ``` Use meaningful names for...
- Create a new endpoint in the backend API to create an update: `POST /case-management/updates`. - Define the `Update` model in the backend with the specified fields (id, createdAt, updatedAt,...
- Add a date range input component using ShadCN's date picker component. - When the date range is changed, update the `from` and `to` search query parameters. - Ensure that...
What? Create a “Welcome X” component that displays the authenticated user’s name and avatar. Why? To personalize the user interface by acknowledging the logged-in user with their name and picture....
## Task Definition **What?** Introduce Role-Based Access Control (RBAC) on the backend by adding roles decorators and guards to restrict access to certain endpoints based on user roles. **Why?** To...