Skip to content

Commit

Permalink
Add Rogers Bank Credit Card transaction template (#87)
Browse files Browse the repository at this point in the history
Rogers bank is a canadian bank that offers credit cards to canadians.
https://rogersbank.com

Co-authored-by: yawhide <ert.mcscrad@gmail.com>
  • Loading branch information
yawhide and yawhide committed Jul 1, 2020
1 parent 84ee055 commit 22b410f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ We have a number of templates available for popular financial institutions to ge
- [Venmo](./templates/venmo.json)
- [Chase](./templates/chase.json)
- [American Express](./templates/american-express.json)
- [Rogers Bank Credit Card](./templates/rogers-bank-credit-card.json)

These templates can be added into the `accounts` section of your `mintable.jsonc` configuration file.

Expand Down Expand Up @@ -208,7 +209,7 @@ npm publish
`CATEGORY_OVERRIDES` specifies a list of overrides to handle transactions that are routinely miscategorized by Plaid's servers.
**Default:**
**Default:**
```javascript
"CATEGORY_OVERRIDES": []
Expand Down Expand Up @@ -240,7 +241,7 @@ For example, if you want anything matching `autopay` or `e-payment` to get categ
`TEMPLATE_SHEET` specifies the template spreadsheet to use when creating a _new_ sheet for a month.
**Default:**
**Default:**
```javascript
"TEMPLATE_SHEET": {
Expand Down
17 changes: 17 additions & 0 deletions docs/templates/rogers-bank-credit-card.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"accounts": {
"Rogers Bank Credit Card": {
"paths": ["/path/to/my/rogers/bank/credit/card/statements/*.csv"],
"transformer": {
"Merchant Name": "name",
"Date": "date",
"Amount": "amount",
"Merchant Category Description": "category"
},
"dateFormat": "yyyy/MM/dd",
"id": "Rogers Bank Credit Card",
"integration": "csv-import",
"negateValues": true
}
}
}

0 comments on commit 22b410f

Please sign in to comment.