Skip to content

0.5.0 MVP 3

Latest
Compare
Choose a tag to compare
@pepitoenpeligro pepitoenpeligro released this 11 Dec 22:23
· 170 commits to master since this release
HU covered in this release (0.5.0):
         -[x] HU1 Add bank account as customer user
         -[x] HU4 Delete bank account as customer user 
         -[x] HU16 Erase Account 
         -[x] HU14 Create user
         -[x] HU2 Add bank-card as customer user
         -[x] HU5 Delete bank card as customer user
         -[x] HU3 Add investment fund
         -[x] HU6 Delete investment fund




Hi, controller was created OK {
  "users": {}
}
We had added a user in system: {
  "users": {
    "999f7f66abf88ee70243988": {
      "id": "999f7f66abf88ee70243988",
      "email": "j.cordoba@ostfalia.de",
      "created_at": "2020-07-08T22:18:00",
      "bank_accounts": {},
      "bank_cards": {},
      "bank_funds": {}
    }
  }
}
We delete now this user from system
Now our customer users are: {
  "users": {}
} 
Adding Card to User:
Now Card is added to user {
  "id": "999f7f66abf88ee70243988",
  "email": "j.cordoba@ostfalia.de",
  "created_at": "2020-07-08T22:18:00",
  "bank_accounts": {},
  "bank_cards": {
    "507f1f77bcf86cd799439011": {
      "id": "507f1f77bcf86cd799439011",
      "number": "5555111122223333",
      "cvc": "584",
      "date_limit": "2022-07-08T22:18:00",
      "status": true
    }
  },
  "bank_funds": {}
}
Removing Card from User:
Now Card is removed from user {
  "id": "999f7f66abf88ee70243988",
  "email": "j.cordoba@ostfalia.de",
  "created_at": "2020-07-08T22:18:00",
  "bank_accounts": {},
  "bank_cards": {},
  "bank_funds": {}
}
Adding bank fund (507f1f77bcf86cd799439011, 534.4, 2025-07-08 22:18:00, 2022-07-08 22:18:00, true)
Erasing bank fund (507f1f77bcf86cd799439011, 534.4, 2025-07-08 22:18:00, 2022-07-08 22:18:00, true)