Skip to content

Releases: pepitoenpeligro/cloudbanking

0.5.0 MVP 3

11 Dec 22:23
Compare
Choose a tag to compare
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)

0.4.0 MVP 2

22 Nov 20:56
Compare
Choose a tag to compare
HU covered in this release (0.4.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




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": {}
    }
  }
}
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
    }
  }
}
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": {}
}

0.3.0 MVP 1

08 Nov 12:32
Compare
Choose a tag to compare
HU covered in this release (0.3.0):
         -[x] HU1 Add bank account as customer user
         -[x] HU4 Delete bank account as customer user 
         -[x] HU5 Delete bank card as customer user
         -[x] Erase Account 
         -[x] HU16 Create user




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": {}
    }
  }
}
We delete now this user from system
Now our customer users are: {
  "users": {}
} 

Basic Model Objects Working

27 Oct 22:22
Compare
Choose a tag to compare

Basic Models {user, bank account, card account, payment group, saving group, fund investment} working.

Created with:

cargo build --release