1. Add a new DB table: group_history id | group_id | text | issuer_id | action_type 2. Add action_type Enum: CREATE_GROUP | (CREATE_BILL) | UPDATE_GROUP | JOIN_GROUP | RESET_GROUP & maybe some other 3. Add new endpoint: GET /api/group/{id}/history - maybe with pagination as optional parameter (50 entries per page) 4. Add groupHistoryDTO: text: "created a new bill: Einkaufen" action_type issuer
Add a new DB table: group_history
id | group_id | text | issuer_id | action_type
Add action_type Enum:
CREATE_GROUP | (CREATE_BILL) | UPDATE_GROUP | JOIN_GROUP | RESET_GROUP & maybe some other
Add new endpoint: GET /api/group/{id}/history
text: "created a new bill: Einkaufen"
action_type
issuer