Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
7e4e9e9
style: use datepicker instead of date textfield
colombefioren Aug 26, 2025
9237f86
refactor: fix prisma models to match openapi spec
colombefioren Aug 27, 2025
a2d4062
refactor: remove unnecessary endpoints (income categories)
colombefioren Aug 27, 2025
93473c2
refactor: remove income category from service layer
colombefioren Aug 27, 2025
ed7ed6e
refactor: update to use new field names (id)
colombefioren Aug 27, 2025
aeda380
refactor: remove category references
colombefioren Aug 27, 2025
93fe19d
refactor: simplify income routes by removing category endpoints
colombefioren Aug 27, 2025
f19ddcd
refactor: remove income category from types
colombefioren Aug 27, 2025
4512003
refactor: remove income category methods from services
colombefioren Aug 27, 2025
9434623
refactor: remove category field and set default date (because of the …
colombefioren Aug 27, 2025
d3a91cc
refactor: remove category display from incomelist
colombefioren Aug 27, 2025
a471bab
feat: make 1 to be the least amount when creating an income
colombefioren Aug 27, 2025
696b554
refactor: add a dash for when source is empty
colombefioren Aug 27, 2025
16db986
feat: required true to textfield source
colombefioren Aug 27, 2025
d17e039
refactor: make the default amount to be 1 instead of 0
colombefioren Aug 27, 2025
5b27bf3
Refactor/income logic (#20)
colombefioren Aug 27, 2025
2b46195
feat: auth middleware before granting the autorisation to fetch incomes
colombefioren Aug 27, 2025
f3fb671
fix: updated password field to be hashed_password
colombefioren Aug 27, 2025
c3c3f30
chore: fix merge conflicts
colombefioren Aug 27, 2025
7293c21
refactor: prisma models attributes to follow the precendent ones
colombefioren Aug 27, 2025
0d0c604
Merge branch 'refactor/income-logic' of https://github.com/Mathieu-bo…
colombefioren Aug 27, 2025
71aafee
fix: enable CORS with credentials for frontend and feat cookieparser …
colombefioren Aug 27, 2025
d33163e
feat: axios options with withCredentials true to allow cookie storage…
colombefioren Aug 27, 2025
0c73431
fix: name mismatch by turning createdAt to creation_date
colombefioren Aug 27, 2025
2429863
fix: made source field unrequired when users are creating an income
colombefioren Aug 27, 2025
91d1cff
fix(client): prevent duplicate query parameters in generated request
colombefioren Aug 27, 2025
faec33d
feat: enhance input validation in server
colombefioren Aug 27, 2025
4852c9f
feat: implement frontend value validation and improve error display
colombefioren Aug 28, 2025
818c756
chore: fix merge conflicts
colombefioren Aug 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/api/core/OpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ export const OpenAPI: OpenAPIConfig = {
PASSWORD: undefined,
HEADERS: undefined,
ENCODE_PATH: undefined,
};
};
Loading