mitlist/fe/src/pages/ExpensesPage.vue
mohamad 448a0705d2
All checks were successful
Deploy to Production, build images and push to Gitea Registry / build_and_push (pull_request) Successful in 1m30s
feat: Implement comprehensive roadmap for feature updates and enhancements
This commit introduces a detailed roadmap for implementing various features, focusing on backend and frontend improvements. Key additions include:

- New database schema designs for financial audit logging, archiving lists, and categorizing items.
- Backend logic for financial audit logging, archiving functionality, and chore subtasks.
- Frontend UI updates for archiving lists, managing categories, and enhancing the chore interface.
- Introduction of a guest user flow and integration of Redis for caching to improve performance.

These changes aim to enhance the application's functionality, user experience, and maintainability.
2025-06-10 08:16:55 +02:00

13 lines
234 B
Vue

<template>
<div>
<ExpensePage :group-id="groupId" />
</div>
</template>
<script setup lang="ts">
import ExpensePage from './ExpensePage.vue';
const props = defineProps<{
groupId?: number | string;
}>();
</script>