Fixed couple of endpoints, implemented more of the frontend

This commit is contained in:
2023-10-25 01:24:28 +03:00
parent e4de55f255
commit 0baac602e4
18 changed files with 300 additions and 204 deletions

View File

@@ -1,7 +1,6 @@
package com.faf223.expensetrackerfaf.dto;
import com.faf223.expensetrackerfaf.model.IncomeCategory;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
@@ -10,7 +9,6 @@ import java.time.LocalDate;
@Data
@AllArgsConstructor
@JsonIgnoreProperties({"incomeCategory"})
public class IncomeDTO {
private long incomeId;
private UserDTO userDTO;